TTV TV

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

TTV TVとは何ですか?

TTV TVはAlex Berlinerによって開発されたChromeの拡張機能で、その主な機能は「Opens a new Twitch.tv stream when a user's currently watched one closes.」です。

拡張機能のスクリーンショット

screenshot

TTV TV拡張機能のCRXファイルをダウンロード

TTV TV拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        ]
    }
}