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.
Qu'est-ce que Click all checkboxes ?
Click all checkboxes est une extension Chrome développée par fivedogit, et sa fonction principale est "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Click all checkboxes
Téléchargez les fichiers d'extension Click all checkboxes au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Click all checkboxes |
ID | fhlogpdbadmjfpndmaijnibflgnbnhof |
URL Officiel | 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. |
Taille du Fichier | 54.66 KB |
Nombre d'Installations | 25,856 |
Version Actuelle | 0.100 |
Dernière Mise à Jour | 2016-02-07 |
Date de Publication | 2016-02-07 |
Évaluation | 3.36/5 Total 75 Évaluations |
Développeur | fivedogit |
Type de Paiement | free |
Langues Prises en Charge | 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'" } |