Multiselect

Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.

Multiselect란 무엇입니까?

Multiselect은(는) andteoh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck."입니다.

확장 프로그램 스크린샷

screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Taking too much effort to check and uncheck multiple checkboxes in a long list? Multiselect will help you get the job done quicker. Hold down Alt key and hover mouse cursor over the checkboxes to check them. To uncheck, press the Shift key and hover over those checkboxes.                    

확장 프로그램 기본 정보

이름 Multiselect Multiselect
ID dbpaociiilnmobllfmfmgjnjlbamaikk
공식 URL https://chromewebstore.google.com/detail/multiselect/dbpaociiilnmobllfmfmgjnjlbamaikk
설명 Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck.
파일 크기 36.64 KB
설치 횟수 43
현재 버전 1.0
최근 업데이트 2023-09-26
출시 날짜 2023-09-26
평점 5.00/5 총 1 개의 평점
개발자 andteoh
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Multiselect",
    "author": "Andy Tech",
    "description": "Quickly multiselect multiple checkboxes; hover over checkboxes + Alt key to check, or Shift key to uncheck. ",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "icons": {
        "128": "images\/checkbox-128.png"
    },
    "background": {
        "script": [
            "thirdParty\/jquery3.7.1.min.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "thirdParty\/jquery3.7.1.min.js",
                "multicheck.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}