Toggle checkboxes

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

What is Toggle checkboxes?

Toggle checkboxes is a Chrome extension developed by https://shubhamsonar.com, and its main feature is "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.".

Extension Screenshots

screenshot

Download Toggle checkboxes Extension CRX File

Download Toggle checkboxes extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Toggle checkboxes Toggle checkboxes
ID hjnjacpbkjdiolbimbbfkfcnjmaojgad
Official URL https://chromewebstore.google.com/detail/toggle-checkboxes/hjnjacpbkjdiolbimbbfkfcnjmaojgad
Description Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page.
File Size 8.42 KB
Installation Count 47
Current Version 1.0
Last Updated 2024-01-03
Publish Date 2023-10-12
Developer https://shubhamsonar.com
Email [email protected]
Payment Type free
Extension Website https://shubhamsonar.com
Supported Languages 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"
    }
}