I Don't Like My Options

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

What is I Don't Like My Options?

I Don't Like My Options is a Chrome extension developed by Derek Hill, and its main feature is "Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.".

Extension Screenshots

screenshot

Download I Don't Like My Options Extension CRX File

Download I Don't Like My Options extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        '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)                    

Extension Basic Information

Name I Don't Like My Options I Don't Like My Options
ID lmkdbgdgecnemfekjahfkpljabcaddfi
Official URL https://chrome.google.com/webstore/detail/i-dont-like-my-options/lmkdbgdgecnemfekjahfkpljabcaddfi
Description Allows you to add your own values to checkboxes, radio buttons, or drop-down menus.
File Size 38.92 KB
Installation Count 20
Current Version 1.0
Last Updated 2014-09-08
Publish Date 2014-09-08
Rating 5.00/5 Total 1 Ratings
Developer Derek Hill
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}