Multicheck Checkbox Checker
Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
Vad är Multicheck Checkbox Checker?
Multicheck Checkbox Checker är en Chrome-tillägg utvecklad av Checkbox Checker, och dess huvudfunktion är "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.".
Tilläggsskärmbilder
Ladda ner Multicheck Checkbox Checker-förlängningens CRX-fil
Ladda ner Multicheck Checkbox Checker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Multicheck Checkbox Checker |
ID | bmcleiancmakcoknkgnfgijomcddhpbi |
Officiell webbadress | https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi |
Beskrivning | Simply check or uncheck multiple checkboxes at a time by clicking and dragging. |
Filstorlek | 198 KB |
Antal Installationer | 11,279 |
Aktuell Version | 2.5 |
Senast Uppdaterad | 2022-02-19 |
Publiceringsdatum | 2019-02-14 |
Betyg | 2.81/5 Totalt 143 Betyg |
Utvecklare | Checkbox Checker |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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\/*" ] } |