Multicheck Checkbox Checker
Simply check or uncheck multiple checkboxes at a time by clicking and dragging.
Multicheck Checkbox Checkerとは何ですか?
Multicheck Checkbox CheckerはCheckbox Checkerによって開発されたChromeの拡張機能で、その主な機能は「Simply check or uncheck multiple checkboxes at a time by clicking and dragging.」です。
拡張機能のスクリーンショット
Multicheck Checkbox Checker拡張機能のCRXファイルをダウンロード
Multicheck Checkbox Checker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Multicheck Checkbox Checker |
ID | bmcleiancmakcoknkgnfgijomcddhpbi |
公式URL | https://chromewebstore.google.com/detail/multicheck-checkbox-check/bmcleiancmakcoknkgnfgijomcddhpbi |
説明 | Simply check or uncheck multiple checkboxes at a time by clicking and dragging. |
ファイルサイズ | 198 KB |
インストール数 | 11,279 |
現在のバージョン | 2.5 |
最終更新日 | 2022-02-19 |
公開日 | 2019-02-14 |
評価 | 2.81/5 合計 143 レビュー |
開発者 | Checkbox Checker |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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\/*" ] } |