Auto Clicker

Just click automation

Auto Clickerคืออะไร?

Auto Clicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://tesilio.github.io และคุณลักษณะหลักของมันคือ "Just click automation"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Auto Clicker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
            ]
        }
    ]
}