Cleanup scripts and add a readme

This commit is contained in:
clerie 2019-02-23 11:42:18 +01:00
parent 3913eda69c
commit bf789ac7aa
3 changed files with 33 additions and 7 deletions

32
README.md Normal file
View File

@ -0,0 +1,32 @@
# Just Paste My Password
The aim of this Extension is, to get rid off the annoying password disabling by many insurances and banks.
It is often really hard to deal with this circumstance, especially when using password managers.
[Install now!](https://addons.mozilla.org/de/firefox/addon/just-paste-my-password/)
## Supported websites
- meine.ikk-suedwest.de
## Installation
### Firefox
#### Using Firefox Add-ons (recommended)
Add to Firefox:
https://addons.mozilla.org/de/firefox/addon/just-paste-my-password/
#### As development version
1. `git clone https://github.com/clerie/just-paste-my-password.git`
3. Open `about:debugging`
4. Load extention temporary
Die Installation besteht nur während der aktuellen Session.
#### As installation file
1. `git clone https://github.com/clerie/just-paste-my-password.git`
2. `cd just-paste-my-password/`
3. `zip -r -FS ../just-paste-my-password.zip *`
4. Sign ZIP file: https://addons.mozilla.org/en-US/developers/addon/submit/distribution
5. Add at `about:addons`
## Credits
- Idea: [Niko](https://chaos.social/@h4kor)
- Implementation: [Clemens Riese](https://clerie.de)

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Just Paste My Password",
"version": "0.0.1",
"version": "0.0.2",
"description": "Re-enables password pasting, when it is blocked by the web page.",

View File

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