Autocomplete on
Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.
What is Autocomplete on?
Autocomplete on is a Chrome extension developed by Tomas Kafka, and its main feature is "Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.".
Download Autocomplete on Extension CRX File
Download Autocomplete on extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
autocomplete_on =============== chrome extension to turn on autocomplete https://chrome.google.com/webstore/detail/autocomplete-on/gdhbgagnmhdafendedikgjimegoipbnk clone of https://chrome.google.com/webstore/detail/autocomplete-on/ecpgkdflcnofdbbkiggklcfmgbnbabhh/related made a clone because i couldn't trust that the other one wouldn't be auto-updated and start stealing my passwords. I don't trust any extensions that want access to all websites I visit! Consider making your own clone :-) source code: https://github.com/kzahel/autocomplete_on
Extension Basic Information
Name | ![]() |
ID | dmgaojnlejjhojlgplleamihdkffahbg |
Official URL | https://chrome.google.com/webstore/detail/autocomplete-on/dmgaojnlejjhojlgplleamihdkffahbg |
Description | Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered. |
File Size | 5.71 KB |
Installation Count | 362 |
Current Version | 1.0 |
Last Updated | 2017-05-30 |
Publish Date | 2017-05-30 |
Developer | Tomas Kafka |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "js": [ "autocomplete.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.", "icons": { "32": "icon32.png" }, "name": "Autocomplete on", "version": "1.0", "manifest_version": 2 } |