smartfiller-chrome

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

Hvad er smartfiller-chrome?

smartfiller-chrome er en Chrome-udvidelse udviklet af pablotomasborda, og dens hovedfunktion er "Learns as you fill forms, you will never have to type the same thing twice.".

Udvidelsesskærmbilleder

screenshot

Download smartfiller-chrome-udvidelses-CRX-fil

Download smartfiller-chrome-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Officiel URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Beskrivelse Learns as you fill forms, you will never have to type the same thing twice.
Filstørrelse 57.55 KB
Antal Installationer 117
Nuværende Version 1.1
Senest Opdateret 2018-03-13
Udgivelsesdato 2018-03-13
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler pablotomasborda
Betalingsmetode free
Udvidelseswebsted https://github.com/PabloBorda/smartfiller-chrome
Hjælpeside-URL https://github.com/PabloBorda/smartfiller-chrome
Understøttede Sprog 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"
    }
}