Click all checkboxes

Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.

What is Click all checkboxes?

Click all checkboxes is a Chrome extension developed by fivedogit, and its main feature is "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.".

Extension Screenshots

screenshot

Download Click all checkboxes Extension CRX File

Download Click all checkboxes 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

                        This extension will *click* (not just check) all the checkboxes on the current page. This is important for firing click events that are attached to the checkboxes and may work for you when other "check all checkboxes" extensions have failed. If not, sorry.                    

Extension Basic Information

Name Click all checkboxes Click all checkboxes
ID fhlogpdbadmjfpndmaijnibflgnbnhof
Official URL https://chromewebstore.google.com/detail/click-all-checkboxes/fhlogpdbadmjfpndmaijnibflgnbnhof
Description Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.
File Size 54.66 KB
Installation Count 25,856
Current Version 0.100
Last Updated 2016-02-07
Publish Date 2016-02-07
Rating 3.36/5 Total 75 Ratings
Developer fivedogit
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click all checkboxes",
    "short_name": "Click all checkboxes",
    "version": "0.100",
    "manifest_version": 2,
    "description": "Click (emphasis on the \"CLICK\", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.",
    "icons": {
        "16": "images\/click_checkboxes_16.png",
        "48": "images\/click_checkboxes_48.png",
        "128": "images\/click_checkboxes_128.png"
    },
    "browser_action": {
        "default_icon": "images\/click_checkboxes_19.png",
        "default_title": "Use this extension",
        "default_popup": "overlay.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/js\/jquery-1.8.2.min.js",
                "\/js\/clicker.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}