Autofill Checker

Check what the chrome autofill actually filled

Wat is Autofill Checker?

Autofill Checker is een Chrome-extensie ontwikkeld door https://bramas.fr, en de belangrijkste functie is "Check what the chrome autofill actually filled".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Autofill Checker

Download Autofill Checker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                                            

Basisinformatie over de Extensie

Naam Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
Officiële URL https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
Beschrijving Check what the chrome autofill actually filled
Bestandsgrootte 15.19 KB
Aantal Installaties 143
Huidige Versie 1.2
Laatst Bijgewerkt 2017-01-07
Publicatiedatum 2017-01-07
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar https://bramas.fr
Betalingswijze free
Extensiewebsite https://github.com/Bramas/autofill-checker
Ondersteunde Talen 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"
    }
}