Automatic Checker
This extension help improve speed to select standard checkbox and radio on webpage
Automatic Checker क्या है?
Automatic Checker auto.extensions द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension help improve speed to select standard checkbox and radio on webpage"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Automatic Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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:\/\/*\/*" ] } |