Twitch Giveaways Reloaded

A flexible and easy-to-use giveaway system for Twitch.tv channels.

Twitch Giveaways Reloadedคืออะไร?

Twitch Giveaways Reloaded เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DynamicBoost และคุณลักษณะหลักของมันคือ "A flexible and easy-to-use giveaway system for Twitch.tv channels."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Extension adds a giveaway system to all popped out or embedded twitch chats, including your dashboard.                    

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

ชื่อ Twitch Giveaways Reloaded Twitch Giveaways Reloaded
ID lbhgdbhopkhialmcnhdcpomjpekkekpf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/twitch-giveaways-reloaded/lbhgdbhopkhialmcnhdcpomjpekkekpf
คำอธิบาย A flexible and easy-to-use giveaway system for Twitch.tv channels.
ขนาดไฟล์ 110 KB
จำนวนการติดตั้ง 4,855
เวอร์ชันปัจจุบัน 1.3
อัปเดตครั้งล่าสุด 2021-08-23
วันที่เผยแพร่ 2020-06-01
คะแนน 4.86/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา DynamicBoost
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Giveaways Reloaded",
    "description": "A flexible and easy-to-use giveaway system for Twitch.tv channels.",
    "version": "1.3",
    "manifest_version": 2,
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.jtvnw.net\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval';object-src 'self';",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "main.html",
        "send-message.js"
    ]
}