initial commit

This commit is contained in:
clerie 2019-02-23 11:00:42 +01:00
commit 3913eda69c
5 changed files with 30 additions and 0 deletions

View File

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

BIN
icons/icon-48.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 414 B

BIN
icons/icon.kra Normal file

Binary file not shown.

19
manifest.json Normal file
View File

@ -0,0 +1,19 @@
{
"manifest_version": 2,
"name": "Just Paste My Password",
"version": "0.0.1",
"description": "Re-enables password pasting, when it is blocked by the web page.",
"icons": {
"48": "icons/icon-48.png"
},
"content_scripts": [
{
"run_at": "document_end",
"matches": ["*://meine.ikk-suedwest.de/*"],
"js": ["assets/meine.ikk-suedwest.de/script.js"]
}
]
}

6
script.js Normal file
View File

@ -0,0 +1,6 @@
window.addEventListener ("load", unblock, false);
function unblock() {
document.getElementByTagName("input").onpaste = () => true;
console.log("Loaded!");
}