Auto Clicker

Just click automation

什么是Auto Clicker?

Auto Clicker是由https://tesilio.github.io开发的Chrome扩展程序,该扩展的主要功能是“Just click automation”。

扩展截图

screenshot

下载Auto Clicker扩展crx文件

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

扩展使用说明

                        This extension is a straightforward auto clicker that's useful when you need to perform repetitive clicking tasks. It's easily controlled with keyboard shortcuts, making it convenient to use.
--------------------------------------------------------------------
To start: Press Ctrl and Comma (,) together.
To stop: Press Ctrl and Period (.) together.
To start with intervals: Press Ctrl, Alt (or Option), and Comma (,) together.
That's all there is to it! 😎
--------------------------------------------------------------------
Please note, this extension is designed for typical web browsing situations. It may not function properly in Flash or SVG-based games.                    

扩展基本信息

名称 Auto Clicker Auto Clicker
ID cpedeojecpbkcomgcolphimkjdnikbck
官方URL https://chromewebstore.google.com/detail/auto-clicker/cpedeojecpbkcomgcolphimkjdnikbck
简介 Just click automation
文件大小 15.58 KB
安装次数 286,776
当前版本 1.5.0
更新时间 2024-02-04
上架时间 2020-05-21
评分 2.26/5 共608次评分
开发者 https://tesilio.github.io
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Auto Clicker",
    "description": "Just click automation",
    "version": "1.5.0",
    "action": {
        "default_popup": "popup.html",
        "default_title": "Ctrl + ,(Comma): Start auto click\nCtrl + Alt + ,(Comma): Start auto click with interval\nCtrl + .(Period): Stop auto click"
    },
    "icons": {
        "16": "\/img\/click.png",
        "32": "\/img\/click.png",
        "48": "\/img\/click.png",
        "128": "\/img\/click.png"
    },
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "js\/common.js",
                "js\/AutoClicker.js",
                "js\/content.js"
            ]
        }
    ]
}