smartfiller-chrome

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

Vad är smartfiller-chrome?

smartfiller-chrome är en Chrome-tillägg utvecklad av pablotomasborda, och dess huvudfunktion är "Learns as you fill forms, you will never have to type the same thing twice.".

Tilläggsskärmbilder

screenshot

Ladda ner smartfiller-chrome-förlängningens CRX-fil

Ladda ner smartfiller-chrome-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Officiell webbadress https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Beskrivning Learns as you fill forms, you will never have to type the same thing twice.
Filstorlek 57.55 KB
Antal Installationer 117
Aktuell Version 1.1
Senast Uppdaterad 2018-03-13
Publiceringsdatum 2018-03-13
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare pablotomasborda
Betalningssätt free
Tilläggswebbplats https://github.com/PabloBorda/smartfiller-chrome
Hjälpsida URL https://github.com/PabloBorda/smartfiller-chrome
Stödda Språk 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"
    }
}