Twitch Loot Collector

This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…

Twitch Loot Collectorคืออะไร?

Twitch Loot Collector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Coding Castle และคุณลักษณะหลักของมันคือ "This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…"

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

screenshot
screenshot

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

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

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

                        This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream it can be annoying if this little green box pops up wanting to be clicked. That's why I created this extension. You can also disable the automated clicking with a simple switch within the extension panel. I'm always happy about feedback.                    

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

ชื่อ Twitch Loot Collector Twitch Loot Collector
ID okagcggpdlegjpllohppffkailcjlcdp
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-loot-collector/okagcggpdlegjpllohppffkailcjlcdp
คำอธิบาย This small extension automates clicking the little loot box in the Twitch chat. If you are not actively in the chat during a stream…
ขนาดไฟล์ 11.94 KB
จำนวนการติดตั้ง 157
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-05-25
วันที่เผยแพร่ 2021-05-24
ผู้พัฒนา Coding Castle
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitch Loot Collector",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitch.tv\/*",
                "http:\/\/twitch.tv\/*",
                "https:\/\/www.twitch.tv\/*",
                "http:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "LootCollector.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/twitch_loot_16x16.png",
            "32": "\/images\/twitch_loot_32x32.png",
            "48": "\/images\/twitch_loot_48x48.png",
            "128": "\/images\/twitch_loot_128x128.png"
        }
    },
    "icons": {
        "16": "\/images\/twitch_loot_16x16.png",
        "32": "\/images\/twitch_loot_32x32.png",
        "48": "\/images\/twitch_loot_48x48.png",
        "128": "\/images\/twitch_loot_128x128.png"
    }
}