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 |
| 官方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 |
| 电子邮箱 | [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\/*"
]
} | |