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.

Wat is Click all checkboxes?

Click all checkboxes is een Chrome-extensie ontwikkeld door fivedogit, en de belangrijkste functie is "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Click all checkboxes

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

                        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.                    

Basisinformatie over de Extensie

Naam Click all checkboxes Click all checkboxes
ID fhlogpdbadmjfpndmaijnibflgnbnhof
Officiële URL https://chromewebstore.google.com/detail/click-all-checkboxes/fhlogpdbadmjfpndmaijnibflgnbnhof
Beschrijving Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.
Bestandsgrootte 54.66 KB
Aantal Installaties 25,856
Huidige Versie 0.100
Laatst Bijgewerkt 2016-02-07
Publicatiedatum 2016-02-07
Beoordeling 3.36/5 Totaal 75 Beoordelingen
Ontwikkelaar fivedogit
Betalingswijze free
Ondersteunde Talen 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'"
}