Added websites:
- ikk-gesundplus.de - meine.ikk-classic.de
This commit is contained in:
parent
506cedbb04
commit
3355c7dfdd
@ -5,6 +5,8 @@ It is often really hard to deal with this circumstance, especially when using pa
|
|||||||
[Install now!](https://addons.mozilla.org/de/firefox/addon/just-paste-my-password/)
|
[Install now!](https://addons.mozilla.org/de/firefox/addon/just-paste-my-password/)
|
||||||
|
|
||||||
## Supported websites
|
## Supported websites
|
||||||
|
- ikk-gesundplus.de
|
||||||
|
- meine.ikk-classic.de
|
||||||
- meine.ikk-suedwest.de
|
- meine.ikk-suedwest.de
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
5
assets/ikk-gesundplus.de/script.js
Normal file
5
assets/ikk-gesundplus.de/script.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
setTimeout(function () {
|
||||||
|
for (var e of document.getElementsByName("passwort")) {
|
||||||
|
e.onpaste = () => true;
|
||||||
|
}
|
||||||
|
}, 1000);
|
5
assets/meine.ikk-classic.de/script.js
Normal file
5
assets/meine.ikk-classic.de/script.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
setTimeout(function () {
|
||||||
|
for (var e of document.getElementsByName("passwort")) {
|
||||||
|
e.onpaste = () => true;
|
||||||
|
}
|
||||||
|
}, 1000);
|
@ -10,6 +10,16 @@
|
|||||||
},
|
},
|
||||||
|
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
|
{
|
||||||
|
"run_at": "document_end",
|
||||||
|
"matches": ["*://*.ikk-gesundplus.de/*"],
|
||||||
|
"js": ["assets/ikk-gesundplus.de/script.js"]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"run_at": "document_end",
|
||||||
|
"matches": ["*://meine.ikk-classic.de/*"],
|
||||||
|
"js": ["assets/meine.ikk-classic.de/script.js"]
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"run_at": "document_end",
|
"run_at": "document_end",
|
||||||
"matches": ["*://meine.ikk-suedwest.de/*"],
|
"matches": ["*://meine.ikk-suedwest.de/*"],
|
||||||
|
Loading…
Reference in New Issue
Block a user