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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fivedogit และคุณลักษณะหลักของมันคือ "Click (emphasis on the "CLICK", not just CHECK) all checkboxes on a page, firing any click events that may be attached to them."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Click all checkboxes
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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'" } |