Twitch Giveaways Reloaded

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

Cos'è Twitch Giveaways Reloaded?

Twitch Giveaways Reloaded è un'estensione di Chrome sviluppata da DynamicBoost, e la sua funzione principale è "A flexible and easy-to-use giveaway system for Twitch.tv channels.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Twitch Giveaways Reloaded

Scarica i file di estensione Twitch Giveaways Reloaded in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Twitch Giveaways Reloaded Twitch Giveaways Reloaded
ID lbhgdbhopkhialmcnhdcpomjpekkekpf
URL Ufficiale https://chromewebstore.google.com/detail/twitch-giveaways-reloaded/lbhgdbhopkhialmcnhdcpomjpekkekpf
Descrizione A flexible and easy-to-use giveaway system for Twitch.tv channels.
Dimensione del File 110 KB
Conteggio Installazioni 4,855
Versione Corrente 1.3
Ultimo Aggiornamento 2021-08-23
Data di Pubblicazione 2020-06-01
Valutazione 4.86/5 Totale 7 Valutazioni
Sviluppatore DynamicBoost
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}