Simple Autofill

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

O que é Simple Autofill?

Simple Autofill é uma extensão do Chrome desenvolvida por Wiggybird, e sua principal característica é "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Simple Autofill

Baixe arquivos de extensão Simple Autofill no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
URL Oficial https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Descrição Presents a simple dropdown menu for textboxes from a list of preconfigured items.
Tamanho do Arquivo 25.8 KB
Contagem de Instalações 6,047
Versão Atual 1.0.4
Última Atualização 2014-07-25
Data de Publicação 2014-07-25
Classificação 3.19/5 Total de 110 Avaliações
Desenvolvedor Wiggybird
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}