Automatic Checker
This extension help improve speed to select standard checkbox and radio on webpage
Automatic Checker là gì?
Automatic Checker là một tiện ích mở rộng Chrome được phát triển bởi auto.extensions, và tính năng chính của nó là "This extension help improve speed to select standard checkbox and radio on webpage".
Ả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 Automatic Checker
Tải xuống các tệp mở rộng Automatic Checker 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 simple & lightweight extension that help you auto select all standard checkbox or radio on your web page. We also support shortcut key for easy and quick access. Detail: why this lightweight? because we only inject content script to active page when you click on the browser action icon, and we do not use any JavaScript library or framework at all Change Log: Version 2.1: - Support iframe with external url Version 2.0 - Support shortcut keys - Support click event method - Bug fixes Please email me if have any problem: [email protected]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Automatic Checker |
ID | kjecklanpieakgjkkkamhnikkfljfcfg |
URL Chính Thức | https://chromewebstore.google.com/detail/automatic-checker/kjecklanpieakgjkkkamhnikkfljfcfg |
Mô tả | This extension help improve speed to select standard checkbox and radio on webpage |
Kích Thước Tệp | 11.13 KB |
Số Lần Cài Đặt | 6,587 |
Phiên Bản Hiện Tại | 2.1 |
Cập Nhật Lần Cuối | 2023-12-03 |
Ngày Phát Hành | 2015-11-15 |
Đánh Giá | 4.61/5 Tổng số 41 Đánh Giá |
Nhà Phát Triển | auto.extensions |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Automatic Checker", "description": "This extension help improve speed to select standard checkbox and radio on webpage", "version": "2.1", "icons": { "16": "icons\/checker_16x16.png", "32": "icons\/checker_32x32.png", "48": "icons\/checker_48x48.png", "128": "icons\/checker_128x128.png" }, "background": { "service_worker": "service_worker.js" }, "commands": { "command_check": { "suggested_key": "Ctrl+Shift+1", "description": "Check all" }, "command_uncheck": { "suggested_key": "Ctrl+Shift+2", "description": "Uncheck all" }, "command_invert": { "suggested_key": "Ctrl+Shift+3", "description": "Invert all" } }, "action": { "default_icon": "icons\/checker_32x32.png", "default_popup": "popup.html", "default_title": "Click to show!" }, "permissions": [ "activeTab", "storage", "scripting", "webNavigation" ], "host_permissions": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } |