Twitch Giveaways Reloaded

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

Twitch Giveaways Reloaded là gì?

Twitch Giveaways Reloaded là một tiện ích mở rộng Chrome được phát triển bởi DynamicBoost, và tính năng chính của nó là "A flexible and easy-to-use giveaway system for Twitch.tv channels.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Twitch Giveaways Reloaded

Tải xuống các tệp mở rộng Twitch Giveaways Reloaded dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Twitch Giveaways Reloaded Twitch Giveaways Reloaded
ID lbhgdbhopkhialmcnhdcpomjpekkekpf
URL Chính Thức https://chromewebstore.google.com/detail/twitch-giveaways-reloaded/lbhgdbhopkhialmcnhdcpomjpekkekpf
Mô tả A flexible and easy-to-use giveaway system for Twitch.tv channels.
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 4,855
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2021-08-23
Ngày Phát Hành 2020-06-01
Đánh Giá 4.86/5 Tổng số 7 Đánh Giá
Nhà Phát Triển DynamicBoost
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}