Automatic Checker
This extension help improve speed to select standard checkbox and radio on webpage
Automatic Checker란 무엇입니까?
Automatic Checker은(는) auto.extensions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension help improve speed to select standard checkbox and radio on webpage"입니다.
확장 프로그램 스크린샷
Automatic Checker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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]
확장 프로그램 기본 정보
이름 | Automatic Checker |
ID | kjecklanpieakgjkkkamhnikkfljfcfg |
공식 URL | https://chromewebstore.google.com/detail/automatic-checker/kjecklanpieakgjkkkamhnikkfljfcfg |
설명 | This extension help improve speed to select standard checkbox and radio on webpage |
파일 크기 | 11.13 KB |
설치 횟수 | 6,587 |
현재 버전 | 2.1 |
최근 업데이트 | 2023-12-03 |
출시 날짜 | 2015-11-15 |
평점 | 4.61/5 총 41 개의 평점 |
개발자 | auto.extensions |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | 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:\/\/*\/*" ] } |