Twitch gift auto clicker

Auto click to claim +50 bonus channel points.

Twitch gift auto clicker란 무엇입니까?

Twitch gift auto clicker은(는) Nikita Madeev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto click to claim +50 bonus channel points."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Twitch gift auto clicker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Auto click to claim +50 bonus channel points. The dotted stroke and an eyes emoji in the corner of the block with channel points indicates that the extension has started tracking points and will automatically click on a gift when it appears.

———————————————————

Source code and bug tracker
https://github.com/NekitCorp/twitch-gift-auto-clicker                    

확장 프로그램 기본 정보

이름 Twitch gift auto clicker Twitch gift auto clicker
ID bpmlmokbcfjnjodihdnobmaphhdoepdb
공식 URL https://chromewebstore.google.com/detail/twitch-gift-auto-clicker/bpmlmokbcfjnjodihdnobmaphhdoepdb
설명 Auto click to claim +50 bonus channel points.
파일 크기 8 KB
설치 횟수 46
현재 버전 2.2.0
최근 업데이트 2023-10-19
출시 날짜 2023-05-06
평점 4.67/5 총 3 개의 평점
개발자 Nikita Madeev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/NekitCorp/twitch-gift-auto-clicker
도움말 페이지 URL https://github.com/NekitCorp/twitch-gift-auto-clicker
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch gift auto clicker",
    "description": "Auto click to claim +50 bonus channel points.",
    "version": "2.2.0",
    "manifest_version": 3,
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "32": ".\/icons\/icon-32.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/twitch.tv\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}