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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}