Multiselect
Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
What is Multiselect?
Multiselect is a Chrome extension developed by andteoh, and its main feature is "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.".
Extension Screenshots
Download Multiselect Extension CRX File
Download Multiselect 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
Taking too much effort to check and uncheck multiple checkboxes in a long list? Multiselect will help you get the job done quicker. Hold down Alt key and hover mouse cursor over the checkboxes to check them. To uncheck, press the Shift key and hover over those checkboxes.
Extension Basic Information
Name | Multiselect |
ID | dbpaociiilnmobllfmfmgjnjlbamaikk |
Official URL | https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk |
Description | Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. |
File Size | 36.64 KB |
Installation Count | 43 |
Current Version | 1.0 |
Last Updated | 2023-09-26 |
Publish Date | 2023-09-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | andteoh |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Multiselect", "author": "Andy Tech", "description": "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. ", "version": "1.0", "permissions": [ "activeTab" ], "icons": { "128": "images\/checkbox-128.png" }, "background": { "script": [ "thirdParty\/jquery3.7.1.min.js", "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "thirdParty\/jquery3.7.1.min.js", "multicheck.js" ], "run_at": "document_end", "all_frames": true } ] } |