smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

O que é smartfiller-chrome?

smartfiller-chrome é uma extensão do Chrome desenvolvida por pablotomasborda, e sua principal característica é "Learns as you fill forms, you will never have to type the same thing twice.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão smartfiller-chrome

Baixe arquivos de extensão smartfiller-chrome 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

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

Informações Básicas da Extensão

Nome smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
URL Oficial https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Descrição Learns as you fill forms, you will never have to type the same thing twice.
Tamanho do Arquivo 57.55 KB
Contagem de Instalações 117
Versão Atual 1.1
Última Atualização 2018-03-13
Data de Publicação 2018-03-13
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor pablotomasborda
Tipo de Pagamento free
Site da Extensão https://github.com/PabloBorda/smartfiller-chrome
URL da Página de Ajuda https://github.com/PabloBorda/smartfiller-chrome
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}