Autofill Checker

Check what the chrome autofill actually filled

Qu'est-ce que Autofill Checker ?

Autofill Checker est une extension Chrome développée par https://bramas.fr, et sa fonction principale est "Check what the chrome autofill actually filled".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Autofill Checker

Téléchargez les fichiers d'extension Autofill Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                                            

Informations de Base sur l'Extension

Nom Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
URL Officiel https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
Description Check what the chrome autofill actually filled
Taille du Fichier 15.19 KB
Nombre d'Installations 143
Version Actuelle 1.2
Dernière Mise à Jour 2017-01-07
Date de Publication 2017-01-07
Évaluation 3.67/5 Total 3 Évaluations
Développeur https://bramas.fr
Type de Paiement free
Site Web de l'Extension https://github.com/Bramas/autofill-checker
Langues Prises en Charge 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"
    }
}