Added websites:

- ikk-gesundplus.de
- meine.ikk-classic.de
This commit is contained in:
clerie 2019-02-23 12:01:21 +01:00
parent 506cedbb04
commit 3355c7dfdd
4 changed files with 22 additions and 0 deletions

View File

@ -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/)
## Supported websites
- ikk-gesundplus.de
- meine.ikk-classic.de
- meine.ikk-suedwest.de
## Installation

View File

@ -0,0 +1,5 @@
setTimeout(function () {
for (var e of document.getElementsByName("passwort")) {
e.onpaste = () => true;
}
}, 1000);

View File

@ -0,0 +1,5 @@
setTimeout(function () {
for (var e of document.getElementsByName("passwort")) {
e.onpaste = () => true;
}
}, 1000);

View File

@ -10,6 +10,16 @@
},
"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",
"matches": ["*://meine.ikk-suedwest.de/*"],