Autofill Checker

Check what the chrome autofill actually filled

What is Autofill Checker?

Autofill Checker is a Chrome extension developed by https://bramas.fr, and its main feature is "Check what the chrome autofill actually filled".

Extension Screenshots

screenshot
screenshot

Download Autofill Checker Extension CRX File

Download Autofill Checker 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

                                            

Extension Basic Information

Name Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
Official URL https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
Description Check what the chrome autofill actually filled
File Size 15.19 KB
Installation Count 143
Current Version 1.2
Last Updated 2017-01-07
Publish Date 2017-01-07
Rating 3.67/5 Total 3 Ratings
Developer https://bramas.fr
Payment Type free
Extension Website https://github.com/Bramas/autofill-checker
Supported Languages 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"
    }
}