Toggle checkboxes

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

Toggle checkboxes क्या है?

Toggle checkboxes https://shubhamsonar.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Productivity tool to toggle all checkboxes (only non-disabled & readable once) on any page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Toggle checkboxes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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"
    }
}