Simple Autofill

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

什麼是Simple Autofill?

Simple Autofill是由Wiggybird開發的Chrome擴展程式,該擴展的主要功能是“Presents a simple dropdown menu for textboxes from a list of preconfigured items.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Simple Autofill擴展crx文件

下載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
官方網址 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"
    ]
}