smartfiller-chrome

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

Cos'è smartfiller-chrome?

smartfiller-chrome è un'estensione di Chrome sviluppata da pablotomasborda, e la sua funzione principale è "Learns as you fill forms, you will never have to type the same thing twice.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione smartfiller-chrome

Scarica i file di estensione smartfiller-chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
URL Ufficiale https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Descrizione Learns as you fill forms, you will never have to type the same thing twice.
Dimensione del File 57.55 KB
Conteggio Installazioni 117
Versione Corrente 1.1
Ultimo Aggiornamento 2018-03-13
Data di Pubblicazione 2018-03-13
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore pablotomasborda
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/PabloBorda/smartfiller-chrome
URL della Pagina di Aiuto https://github.com/PabloBorda/smartfiller-chrome
Lingue Supportate 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"
    }
}