Twitch ChestClicker

ChestClicker for Twitch

Twitch ChestClickerคืออะไร?

Twitch ChestClicker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย spddl และคุณลักษณะหลักของมันคือ "ChestClicker for Twitch"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Twitch ChestClicker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Automatically collects the Twitch.tv chests that you actually have to click.

This works sparingly via the https://developer.mozilla.org/de/docs/Web/API/MutationObserver API                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Twitch ChestClicker Twitch ChestClicker
ID mdjllaihmfallpabkcdjnklhnpfiadbh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-chestclicker/mdjllaihmfallpabkcdjnklhnpfiadbh
คำอธิบาย ChestClicker for Twitch
ขนาดไฟล์ 18.43 KB
จำนวนการติดตั้ง 37
เวอร์ชันปัจจุบัน 0.0.9
อัปเดตครั้งล่าสุด 2021-07-04
วันที่เผยแพร่ 2020-09-04
ผู้พัฒนา spddl
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/spddl/Twitch-ChestClicker
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch ChestClicker",
    "description": "ChestClicker for Twitch",
    "version": "0.0.9",
    "icons": {
        "48": "logo48.png",
        "128": "logo128.png",
        "256": "logo256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        "*:\/\/*.twitch.tv\/*"
    ],
    "action": {
        "default_title": "Twitch ChestClicker",
        "default_icon": {
            "48": "logo48.png",
            "128": "logo128.png",
            "256": "logo256.png"
        }
    }
}