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."입니다.

확장 프로그램 스크린샷

screenshot

Toggle checkboxes 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}