Automatic Checker
This extension help improve speed to select standard checkbox and radio on webpage
Qu'est-ce que Automatic Checker ?
Automatic Checker est une extension Chrome développée par auto.extensions, et sa fonction principale est "This extension help improve speed to select standard checkbox and radio on webpage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Automatic Checker
Téléchargez les fichiers d'extension Automatic Checker au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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]
Informations de Base sur l'Extension
Nom | Automatic Checker |
ID | kjecklanpieakgjkkkamhnikkfljfcfg |
URL Officiel | https://chromewebstore.google.com/detail/automatic-checker/kjecklanpieakgjkkkamhnikkfljfcfg |
Description | This extension help improve speed to select standard checkbox and radio on webpage |
Taille du Fichier | 11.13 KB |
Nombre d'Installations | 6,587 |
Version Actuelle | 2.1 |
Dernière Mise à Jour | 2023-12-03 |
Date de Publication | 2015-11-15 |
Évaluation | 4.61/5 Total 41 Évaluations |
Développeur | auto.extensions |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |