Simple Autofill

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

What is Simple Autofill?

Simple Autofill is a Chrome extension developed by Wiggybird, and its main feature is "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Simple Autofill Extension CRX File

Download Simple Autofill extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
Official URL https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Description Presents a simple dropdown menu for textboxes from a list of preconfigured items.
File Size 25.8 KB
Installation Count 6,047
Current Version 1.0.4
Last Updated 2014-07-25
Publish Date 2014-07-25
Rating 3.19/5 Total 110 Ratings
Developer Wiggybird
Payment Type free
Supported Languages 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"
    ]
}