TTV TV

Opens a new Twitch.tv stream when a user's currently watched one closes.

Cos'è TTV TV?

TTV TV è un'estensione di Chrome sviluppata da Alex Berliner, e la sua funzione principale è "Opens a new Twitch.tv stream when a user's currently watched one closes.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione TTV TV

Scarica i file di estensione TTV TV 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

                        Provides a simple UI to arrange a list of twitch.tv streamers to switch to when your watched stream goes offline.                    

Informazioni di Base sull'Estensione

Nome TTV TV TTV TV
ID bnmlihhhebgoiihoaicfmahhcheecoaa
URL Ufficiale https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa
Descrizione Opens a new Twitch.tv stream when a user's currently watched one closes.
Dimensione del File 498 KB
Conteggio Installazioni 60
Versione Corrente 1.0.1
Ultimo Aggiornamento 2016-05-01
Data di Pubblicazione 2016-05-01
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Alex Berliner
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Monorail/TTVTV
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TTV TV",
    "description": "Opens a new Twitch.tv stream when a user's currently watched one closes.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "libs\/images\/icon128.png"
    },
    "icons": {
        "16": "libs\/images\/icon16.png",
        "48": "libs\/images\/icon48.png",
        "128": "libs\/images\/icon128.png"
    },
    "web_accessible_resources": [
        "popup.html",
        "libs\/angular.min.js"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "https:\/\/api.twitch.tv\/*",
        "activeTab",
        "tabs",
        "storage"
    ],
    "optional_permissions": [
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "libs\/jquery-2.2.1.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}