TTV TV

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

Wat is TTV TV?

TTV TV is een Chrome-extensie ontwikkeld door Alex Berliner, en de belangrijkste functie is "Opens a new Twitch.tv stream when a user's currently watched one closes.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie TTV TV

Download TTV TV-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam TTV TV TTV TV
ID bnmlihhhebgoiihoaicfmahhcheecoaa
Officiële URL https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa
Beschrijving Opens a new Twitch.tv stream when a user's currently watched one closes.
Bestandsgrootte 498 KB
Aantal Installaties 60
Huidige Versie 1.0.1
Laatst Bijgewerkt 2016-05-01
Publicatiedatum 2016-05-01
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Alex Berliner
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Monorail/TTVTV
Ondersteunde Talen 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"
        ]
    }
}