Multicheck Checkbox Checker
Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
What is Multicheck Checkbox Checker?
Multicheck Checkbox Checker is a Chrome extension developed by Checkbox Checker, and its main feature is "Simply check or uncheck multiple checkboxes at a time by clicking and dragging.".
Extension Screenshots
Download Multicheck Checkbox Checker Extension CRX File
Download Multicheck Checkbox Checker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Multicheck Checkbox Checker |
ID | bmcleiancmakcoknkgnfgijomcddhpbi |
Official URL | https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi |
Description | Simply check or uncheck multiple checkboxes at a time by clicking and dragging. |
File Size | 198 KB |
Installation Count | 11,279 |
Current Version | 2.5 |
Last Updated | 2022-02-19 |
Publish Date | 2019-02-14 |
Rating | 2.81/5 Total 143 Ratings |
Developer | Checkbox Checker |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |