Autofill Checker
Check what the chrome autofill actually filled
什么是Autofill Checker?
Autofill Checker是由https://bramas.fr开发的Chrome扩展程序,该扩展的主要功能是“Check what the chrome autofill actually filled”。
扩展截图
下载Autofill Checker扩展crx文件
下载Autofill Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
扩展基本信息
名称 | Autofill Checker |
ID | nfdenjdodgbjbcbocechcbkhncakpieb |
官方URL | https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb |
简介 | Check what the chrome autofill actually filled |
文件大小 | 15.19 KB |
安装次数 | 143 |
当前版本 | 1.2 |
更新时间 | 2017-01-07 |
上架时间 | 2017-01-07 |
评分 | 3.67/5 共3次评分 |
开发者 | https://bramas.fr |
付费类型 | free |
扩展官网 | https://github.com/Bramas/autofill-checker |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Autofill Checker", "description": "Check what the chrome autofill actually filled", "version": "1.2", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ], "background": { "persistent": false, "scripts": [ "bg.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "background" ], "icons": { "192": "icon.png" } } |