Twitch Giveaways Reloaded

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

Qu'est-ce que Twitch Giveaways Reloaded ?

Twitch Giveaways Reloaded est une extension Chrome développée par DynamicBoost, et sa fonction principale est "A flexible and easy-to-use giveaway system for Twitch.tv channels.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Twitch Giveaways Reloaded

Téléchargez les fichiers d'extension Twitch Giveaways Reloaded au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Twitch Giveaways Reloaded Twitch Giveaways Reloaded
ID lbhgdbhopkhialmcnhdcpomjpekkekpf
URL Officiel https://chromewebstore.google.com/detail/twitch-giveaways-reloaded/lbhgdbhopkhialmcnhdcpomjpekkekpf
Description A flexible and easy-to-use giveaway system for Twitch.tv channels.
Taille du Fichier 110 KB
Nombre d'Installations 4,855
Version Actuelle 1.3
Dernière Mise à Jour 2021-08-23
Date de Publication 2020-06-01
Évaluation 4.86/5 Total 7 Évaluations
Développeur DynamicBoost
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}