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. 擴展基本資訊
| 名稱 | |
| ID | bmcleiancmakcoknkgnfgijomcddhpbi |
| 官方網址 | 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 |
| 電子郵箱 | [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\/*"
]
} | |