Auto Clicker

Just click automation

Auto Clicker란 무엇입니까?

Auto Clicker은(는) https://tesilio.github.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Just click automation"입니다.

확장 프로그램 스크린샷

screenshot

Auto Clicker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}