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”。

扩展截图

screenshot
screenshot
screenshot

下载Automatic Checker扩展crx文件

下载Automatic Checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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:\/\/*\/*"
    ]
}