TTV TV

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

Qu'est-ce que TTV TV ?

TTV TV est une extension Chrome développée par Alex Berliner, et sa fonction principale est "Opens a new Twitch.tv stream when a user's currently watched one closes.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension TTV TV

Téléchargez les fichiers d'extension TTV TV 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

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

Informations de Base sur l'Extension

Nom TTV TV TTV TV
ID bnmlihhhebgoiihoaicfmahhcheecoaa
URL Officiel https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa
Description Opens a new Twitch.tv stream when a user's currently watched one closes.
Taille du Fichier 498 KB
Nombre d'Installations 60
Version Actuelle 1.0.1
Dernière Mise à Jour 2016-05-01
Date de Publication 2016-05-01
Évaluation 5.00/5 Total 3 Évaluations
Développeur Alex Berliner
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Monorail/TTVTV
Langues Prises en Charge 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"
        ]
    }
}