smartfiller-chrome

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

Was ist smartfiller-chrome?

smartfiller-chrome ist eine Chrome-Erweiterung, die von pablotomasborda entwickelt wurde, und ihr Hauptmerkmal ist "Learns as you fill forms, you will never have to type the same thing twice.".

Erweiterungsscreenshots

screenshot

smartfiller-chrome-Erweiterungs-CRX-Datei herunterladen

Laden Sie smartfiller-chrome-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Offizielle URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Beschreibung Learns as you fill forms, you will never have to type the same thing twice.
Dateigröße 57.55 KB
Installationsanzahl 117
Aktuelle Version 1.1
Letztes Update 2018-03-13
Veröffentlichungsdatum 2018-03-13
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler pablotomasborda
Zahlungsart free
Erweiterungswebsite https://github.com/PabloBorda/smartfiller-chrome
Hilfeseite URL https://github.com/PabloBorda/smartfiller-chrome
Unterstützte Sprachen 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"
    }
}