I Don't Like My Options

Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.

Cos'è I Don't Like My Options?

I Don't Like My Options è un'estensione di Chrome sviluppata da Derek Hill, e la sua funzione principale è "Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione I Don't Like My Options

Scarica i file di estensione I Don't Like My Options in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        'Alt + right-click' on a checkbox, radio button, or drop-down menu to change/add your own options. (Will only work on forms with no checks against individual values)                    

Informazioni di Base sull'Estensione

Nome I Don't Like My Options I Don't Like My Options
ID lmkdbgdgecnemfekjahfkpljabcaddfi
URL Ufficiale https://chrome.google.com/webstore/detail/i-dont-like-my-options/lmkdbgdgecnemfekjahfkpljabcaddfi
Descrizione Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.
Dimensione del File 38.92 KB
Conteggio Installazioni 20
Versione Corrente 1.0
Ultimo Aggiornamento 2014-09-08
Data di Pubblicazione 2014-09-08
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Derek Hill
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "I Don't Like My Options",
    "version": "1.0",
    "description": "Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.",
    "background": {
        "page": "background.html"
    },
    "manifest_version": 2,
    "browser_action": {
        "name": "Manipulate DOM",
        "icons": [
            "icon-default.png"
        ],
        "default_icon": "icon-default.png",
        "default_title": "I Don't Like My Options"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "background.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}