Click all checkboxes

Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.

Click all checkboxes란 무엇입니까?

Click all checkboxes은(는) fivedogit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension will *click* (not just check) all the checkboxes on the current page. This is important for firing click events that are attached to the checkboxes and may work for you when other "check all checkboxes" extensions have failed. If not, sorry.                    

확장 프로그램 기본 정보

이름 Click all checkboxes Click all checkboxes
ID fhlogpdbadmjfpndmaijnibflgnbnhof
공식 URL https://chromewebstore.google.com/detail/click-all-checkboxes/fhlogpdbadmjfpndmaijnibflgnbnhof
설명 Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.
파일 크기 54.66 KB
설치 횟수 25,856
현재 버전 0.100
최근 업데이트 2016-02-07
출시 날짜 2016-02-07
평점 3.36/5 총 75 개의 평점
개발자 fivedogit
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click all checkboxes",
    "short_name": "Click all checkboxes",
    "version": "0.100",
    "manifest_version": 2,
    "description": "Click (emphasis on the \"CLICK\", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.",
    "icons": {
        "16": "images\/click_checkboxes_16.png",
        "48": "images\/click_checkboxes_48.png",
        "128": "images\/click_checkboxes_128.png"
    },
    "browser_action": {
        "default_icon": "images\/click_checkboxes_19.png",
        "default_title": "Use this extension",
        "default_popup": "overlay.html"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "\/js\/jquery-1.8.2.min.js",
                "\/js\/clicker.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*\/*"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'"
}