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.”。
擴展截圖
下載Click all checkboxes擴展crx文件
下載Click all checkboxes擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | fhlogpdbadmjfpndmaijnibflgnbnhof |
官方網址 | 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'" } |