TTV TV

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

TTV TV क्या है?

TTV TV Alex Berliner द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Opens a new Twitch.tv stream when a user's currently watched one closes."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TTV TV एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

एक्सटेंशन की मूल जानकारी

नाम TTV TV TTV TV
ID bnmlihhhebgoiihoaicfmahhcheecoaa
आधिकारिक URL https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa
विवरण Opens a new Twitch.tv stream when a user's currently watched one closes.
फ़ाइल का आकार 498 KB
स्थापना संख्या 60
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2016-05-01
प्रकाशन तिथि 2016-05-01
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Alex Berliner
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/Monorail/TTVTV
समर्थित भाषाएँ 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"
        ]
    }
}