Simple Autofill

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

Simple Autofill là gì?

Simple Autofill là một tiện ích mở rộng Chrome được phát triển bởi Wiggybird, và tính năng chính của nó là "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Simple Autofill

Tải xuống các tệp mở rộng Simple Autofill dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
URL Chính Thức https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Mô tả Presents a simple dropdown menu for textboxes from a list of preconfigured items.
Kích Thước Tệp 25.8 KB
Số Lần Cài Đặt 6,047
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2014-07-25
Ngày Phát Hành 2014-07-25
Đánh Giá 3.19/5 Tổng số 110 Đánh Giá
Nhà Phát Triển Wiggybird
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}