Simple Autofill

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

Simple Autofill क्या है?

Simple Autofill Wiggybird द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Presents a simple dropdown menu for textboxes from a list of preconfigured items."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Simple Autofill एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}