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