smartfiller-chrome

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

Τι είναι το smartfiller-chrome;

Το smartfiller-chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον pablotomasborda, και η κύρια λειτουργία του είναι "Learns as you fill forms, you will never have to type the same thing twice.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης smartfiller-chrome

Λήψη αρχείων επέκτασης smartfiller-chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Επίσημο URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Περιγραφή Learns as you fill forms, you will never have to type the same thing twice.
Μέγεθος Αρχείου 57.55 KB
Αριθμός Εγκαταστάσεων 117
Τρέχουσα Έκδοση 1.1
Τελευταία Ενημέρωση 2018-03-13
Ημερομηνία Δημοσίευσης 2018-03-13
Αξιολόγηση 2.33/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής pablotomasborda
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/PabloBorda/smartfiller-chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/PabloBorda/smartfiller-chrome
Υποστηριζόμενες Γλώσσες 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"
    }
}