Autocomplete on
Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.
什么是Autocomplete on?
Autocomplete on是由Tomas Kafka开发的Chrome扩展程序,该扩展的主要功能是“Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered.”。
下载Autocomplete on扩展crx文件
下载Autocomplete on扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 扩展基本信息
| 名称 | |
| ID | dmgaojnlejjhojlgplleamihdkffahbg |
| 官方URL | https://chrome.google.com/webstore/detail/autocomplete-on/dmgaojnlejjhojlgplleamihdkffahbg |
| 简介 | Changes 'autocomplete=off' to 'autocomplete=on' in web pages, so your passwords will be remembered. |
| 文件大小 | 5.71 KB |
| 安装次数 | 362 |
| 当前版本 | 1.0 |
| 更新时间 | 2017-05-30 |
| 上架时间 | 2017-05-30 |
| 开发者 | Tomas Kafka |
| 付费类型 | free |
| 支持的语言 | 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
} | |