Multicheck Checkbox Checker
Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
Cos'è Multicheck Checkbox Checker?
Multicheck Checkbox Checker è un'estensione di Chrome sviluppata da Checkbox Checker, e la sua funzione principale è "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Multicheck Checkbox Checker
Scarica i file di estensione Multicheck Checkbox Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Allows you to check multiple checkboxes quickly by CLICKING & DRAGGING or even quicker with an ALT+CLICK & DRAG area select. You may need to refresh your browser window after installation for this extension to work. *UPDATE* Here is a short user-created video tutorial describing how to implement this extension. https://youtu.be/MazQnq-RcC8 Feel free to post any comments or bugs, but unfortunately the developer will not be able to address any of them at this time.
Informazioni di Base sull'Estensione
Nome | Multicheck Checkbox Checker |
ID | bmcleiancmakcoknkgnfgijomcddhpbi |
URL Ufficiale | https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi |
Descrizione | Simply check or uncheck multiple checkboxes at a time by clicking and dragging. |
Dimensione del File | 198 KB |
Conteggio Installazioni | 11,279 |
Versione Corrente | 2.5 |
Ultimo Aggiornamento | 2022-02-19 |
Data di Pubblicazione | 2019-02-14 |
Valutazione | 2.81/5 Totale 143 Valutazioni |
Sviluppatore | Checkbox Checker |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Multicheck Checkbox Checker", "version": "2.5", "description": "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.", "manifest_version": 3, "action": { "default_icon": { "128": "icon-default.png" }, "default_title": "Multicheck Checkbox Checker" }, "background": { "service_worker": "toggle.js" }, "content_scripts": [ { "run_at": "document_start", "js": [ "jquery.min.js", "background.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "permissions": [ "storage" ], "host_permissions": [ "https:\/\/fontsg.com\/*" ] } |