Twitch Auto Bonuschest

An extension that automatically clicks on bonus chests.

ما هو Twitch Auto Bonuschest؟

Twitch Auto Bonuschest هو إضافة Chrome تم تطويرها بواسطة styfish، والميزة الرئيسية لها هي "An extension that automatically clicks on bonus chests.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Twitch Auto Bonuschest

قم بتنزيل ملفات الامتداد Twitch Auto Bonuschest بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
    }
}