Stream Defense Controller

A controller for the popular Twitch.tv stream defense game.

Cos'è Stream Defense Controller?

Stream Defense Controller è un'estensione di Chrome sviluppata da Mariusz Dabrowski, e la sua funzione principale è "A controller for the popular Twitch.tv stream defense game.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Stream Defense Controller

Scarica i file di estensione Stream Defense Controller 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

                        This is a video overlay for the popular Twitch.tv stream defense game: https://www.twitch.tv/archonthewizard

It creates an overlay over the video to allow you to play without typing commands.                    

Informazioni di Base sull'Estensione

Nome Stream Defense Controller Stream Defense Controller
ID kdnmeicbpnbfjhoeofjpglbfcmhepdga
URL Ufficiale https://chromewebstore.google.com/detail/stream-defense-controller/kdnmeicbpnbfjhoeofjpglbfcmhepdga
Descrizione A controller for the popular Twitch.tv stream defense game.
Dimensione del File 40.52 KB
Conteggio Installazioni 26
Versione Corrente 2.1.2
Ultimo Aggiornamento 2019-03-20
Data di Pubblicazione 2019-03-20
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Mariusz Dabrowski
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/MariuszDabrowski/stream-defense-controller
URL della Pagina di Aiuto https://github.com/MariuszDabrowski/stream-defense-controller
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stream Defense Controller",
    "description": "A controller for the popular Twitch.tv stream defense game.",
    "version": "2.1.2",
    "author": "Mariusz Dabrowski",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*",
                "http:\/\/*.twitch.tv\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/overlay.bundle.js"
            ],
            "css": [
                "css\/overlay.css",
                "css\/tabs.css",
                "css\/video.css",
                "css\/factionsSelect.css",
                "css\/classSelector.css",
                "css\/cost.css",
                "css\/mapSelector.css",
                "css\/toggleVisibility.css",
                "css\/customActions.css",
                "css\/powerButtons.css",
                "css\/targetPriority.css",
                "css\/votingOptions.css"
            ]
        }
    ],
    "browser_action": {
        "default_title": "Stream Defense Controller",
        "default_popup": "popup.html",
        "default_icon": {
            "128": "images\/128x128.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "management"
    ],
    "icons": {
        "128": "images\/app-icon-128x128.png"
    }
}