Toggle checkboxes

Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.

Toggle checkboxes là gì?

Toggle checkboxes là một tiện ích mở rộng Chrome được phát triển bởi https://shubhamsonar.com, và tính năng chính của nó là "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Toggle checkboxes

Tải xuống các tệp mở rộng Toggle checkboxes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Toggle checkboxes Toggle checkboxes
ID hjnjacpbkjdiolbimbbfkfcnjmaojgad
URL Chính Thức https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad
Mô tả Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
Kích Thước Tệp 8.42 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2024-01-03
Ngày Phát Hành 2023-10-12
Nhà Phát Triển https://shubhamsonar.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://shubhamsonar.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}