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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them."।

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

screenshot

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

crx प्रारूप में Click all checkboxes एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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'"
}