Simple Autofill

Presents a simple dropdown menu for textboxes from a list of preconfigured items.

Τι είναι το Simple Autofill;

Το Simple Autofill είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Wiggybird, και η κύρια λειτουργία του είναι "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

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

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Simple Autofill

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

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

                        When typing in a textbox, this extension displays a menu with a list of matching items from the Options page.

This no-frills extension was designed to be light weight, noninvasive, and intuitive to use.

Please note: Option settings are stored using the chrome.storage.sync API and are not encrypted. Entering sensitive data is NOT recommended.

Also note: This is my first javascript app and my first Chrome extension - constructive criticism is welcome!                    

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

Όνομα Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
Επίσημο URL https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Περιγραφή Presents a simple dropdown menu for textboxes from a list of preconfigured items.
Μέγεθος Αρχείου 25.8 KB
Αριθμός Εγκαταστάσεων 6,047
Τρέχουσα Έκδοση 1.0.4
Τελευταία Ενημέρωση 2014-07-25
Ημερομηνία Δημοσίευσης 2014-07-25
Αξιολόγηση 3.19/5 Συνολικά 110 Αξιολογήσεις
Προγραμματιστής Wiggybird
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Autofill",
    "version": "1.0.4",
    "options_page": "options.html",
    "description": "Presents a simple dropdown menu for textboxes from a list of preconfigured items.",
    "icons": {
        "128": "images\/autofill.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/autofill19.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "styles\/autofill.css"
            ],
            "js": [
                "scripts\/autofill.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ]
}