Auto Clicker

Just click automation

Auto Clicker là gì?

Auto Clicker là một tiện ích mở rộng Chrome được phát triển bởi https://tesilio.github.io, và tính năng chính của nó là "Just click automation".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Auto Clicker

Tải xuống các tệp mở rộng Auto Clicker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Auto Clicker Auto Clicker
ID cpedeojecpbkcomgcolphimkjdnikbck
URL Chính Thức https://chromewebstore.google.com/detail/auto-clicker/cpedeojecpbkcomgcolphimkjdnikbck
Mô tả Just click automation
Kích Thước Tệp 15.58 KB
Số Lần Cài Đặt 286,776
Phiên Bản Hiện Tại 1.5.0
Cập Nhật Lần Cuối 2024-02-04
Ngày Phát Hành 2020-05-21
Đánh Giá 2.26/5 Tổng số 608 Đánh Giá
Nhà Phát Triển https://tesilio.github.io
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}