Toggle checkboxes
Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
什么是Toggle checkboxes?
Toggle checkboxes是由https://shubhamsonar.com开发的Chrome扩展程序,该扩展的主要功能是“Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.”。
扩展截图
下载Toggle checkboxes扩展crx文件
下载Toggle checkboxes扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension will help you Check OR Uncheck all checkbox fields on the page using a single click. It will only work for checkboxes which are readable and are not disabled to respect integrity of the UX provided by website providers. It shall also not work with websites which use custom checkbox elements than traditional checkbox elements. This is a small yet a powerful productivity tool, use with caution only where its needed at your own responsibility. Hope this saves some time for you ❤️ Best, Shubham Sonar
扩展基本信息
名称 | Toggle checkboxes |
ID | hjnjacpbkjdiolbimbbfkfcnjmaojgad |
官方URL | https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad |
简介 | Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page. |
文件大小 | 8.42 KB |
安装次数 | 47 |
当前版本 | 1.0 |
更新时间 | 2024-01-03 |
上架时间 | 2023-10-12 |
开发者 | https://shubhamsonar.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://shubhamsonar.com |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Toggle checkboxes", "description": "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.", "version": "1.0", "manifest_version": 3, "action": { "default_title": "Click to toggle all checkboxes", "default_icon": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "32": ".\/icons\/32.png", "16": ".\/icons\/16.png" } }, "permissions": [ "activeTab", "scripting" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "service_worker": "background.js" }, "icons": { "128": ".\/icons\/128.png", "48": ".\/icons\/48.png", "32": ".\/icons\/32.png", "16": ".\/icons\/16.png" } } |