Twitch Giveaways Reloaded
A flexible and easy-to-use giveaway system for Twitch.tv channels.
什麼是Twitch Giveaways Reloaded?
Twitch Giveaways Reloaded是由DynamicBoost開發的Chrome擴展程式,該擴展的主要功能是“A flexible and easy-to-use giveaway system for Twitch.tv channels.”。
擴展截圖
下載Twitch Giveaways Reloaded擴展crx文件
下載Twitch Giveaways Reloaded擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        Extension adds a giveaway system to all popped out or embedded twitch chats, including your dashboard.                     擴展基本資訊
| 名稱 |   |  
| ID | lbhgdbhopkhialmcnhdcpomjpekkekpf | 
| 官方網址 | 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"
    ]
}  |  |