Autofill Checker

Check what the chrome autofill actually filled

O que é Autofill Checker?

Autofill Checker é uma extensão do Chrome desenvolvida por https://bramas.fr, e sua principal característica é "Check what the chrome autofill actually filled".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Autofill Checker

Baixe arquivos de extensão Autofill Checker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                                            

Informações Básicas da Extensão

Nome Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
URL Oficial https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
Descrição Check what the chrome autofill actually filled
Tamanho do Arquivo 15.19 KB
Contagem de Instalações 143
Versão Atual 1.2
Última Atualização 2017-01-07
Data de Publicação 2017-01-07
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor https://bramas.fr
Tipo de Pagamento free
Site da Extensão https://github.com/Bramas/autofill-checker
Idiomas Suportados 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"
    }
}