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 là gì?
Click all checkboxes là một tiện ích mở rộng Chrome được phát triển bởi fivedogit, và tính năng chính của nó là "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Click all checkboxes
Tải xuống các tệp mở rộng Click all checkboxes dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Click all checkboxes |
ID | fhlogpdbadmjfpndmaijnibflgnbnhof |
URL Chính Thức | https://chromewebstore.google.com/detail/click-all-checkboxes/fhlogpdbadmjfpndmaijnibflgnbnhof |
Mô tả | Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them. |
Kích Thước Tệp | 54.66 KB |
Số Lần Cài Đặt | 25,856 |
Phiên Bản Hiện Tại | 0.100 |
Cập Nhật Lần Cuối | 2016-02-07 |
Ngày Phát Hành | 2016-02-07 |
Đánh Giá | 3.36/5 Tổng số 75 Đánh Giá |
Nhà Phát Triển | fivedogit |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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'" } |