Twitch Auto Bonuschest

An extension that automatically clicks on bonus chests.

Twitch Auto Bonuschest란 무엇입니까?

Twitch Auto Bonuschest은(는) styfish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension that automatically clicks on bonus chests."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        【Features】
・Automatically click on the bonus chest that appears after 15 minutes of viewing.
・Measure the time it takes for the bonus chest to appear. (countdown)

【Remarks】
・The time is displayed on the icon, so fixing it is recommended.

【Github】
・https://github.com/StyfishNoob/Twitch-AutoBC

【Update】
・2021/5/14 ver2.0 
・2021/7/30 ver2.1
・2021/8/11 ver2.2
・2021/8/31 ver2.3

(Translated by DeepL)                    

확장 프로그램 기본 정보

이름 Twitch Auto Bonuschest Twitch Auto Bonuschest
ID dhpinkkdmelhnmjicdamkkkoacljhknd
공식 URL https://chromewebstore.google.com/detail/twitch-auto-bonuschest/dhpinkkdmelhnmjicdamkkkoacljhknd
설명 An extension that automatically clicks on bonus chests.
파일 크기 11.64 KB
설치 횟수 149
현재 버전 2.4
최근 업데이트 2021-10-02
출시 날짜 2021-02-22
개발자 styfish
이메일 [email protected]
결제 유형 free
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "2.4",
    "default_locale": "en",
    "name": "Twitch Auto Bonuschest",
    "description": "An extension that automatically clicks on bonus chests.",
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup\/popup.html",
        "default_title": "Click on the bonus chest automatically!"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    }
}