Simple Autofill

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

Wat is Simple Autofill?

Simple Autofill is een Chrome-extensie ontwikkeld door Wiggybird, en de belangrijkste functie is "Presents a simple dropdown menu for textboxes from a list of preconfigured items.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Simple Autofill

Download Simple Autofill-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam Simple Autofill Simple Autofill
ID cdjplknefldnfcncohonjbeeocljjmbm
Officiële URL https://chromewebstore.google.com/detail/simple-autofill/cdjplknefldnfcncohonjbeeocljjmbm
Beschrijving Presents a simple dropdown menu for textboxes from a list of preconfigured items.
Bestandsgrootte 25.8 KB
Aantal Installaties 6,047
Huidige Versie 1.0.4
Laatst Bijgewerkt 2014-07-25
Publicatiedatum 2014-07-25
Beoordeling 3.19/5 Totaal 110 Beoordelingen
Ontwikkelaar Wiggybird
Betalingswijze free
Ondersteunde Talen 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"
    ]
}