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拡張機能をインストールします。
拡張機能の使用方法
                                             拡張機能の基本情報
| 名前 |   |  
| 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"
    }
}  |  |