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.
Hvad er Click all checkboxes?
Click all checkboxes er en Chrome-udvidelse udviklet af fivedogit, og dens hovedfunktion er "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.".
Udvidelsesskærmbilleder
Download Click all checkboxes-udvidelses-CRX-fil
Download Click all checkboxes-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Click all checkboxes |
ID | fhlogpdbadmjfpndmaijnibflgnbnhof |
Officiel URL | https://chromewebstore.google.com/detail/click-all-checkboxes/fhlogpdbadmjfpndmaijnibflgnbnhof |
Beskrivelse | Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them. |
Filstørrelse | 54.66 KB |
Antal Installationer | 25,856 |
Nuværende Version | 0.100 |
Senest Opdateret | 2016-02-07 |
Udgivelsesdato | 2016-02-07 |
Bedømmelse | 3.36/5 Samlet 75 Bedømmelser |
Udvikler | fivedogit |
Betalingsmetode | free |
Understøttede Sprog | 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'" } |