TTV TV

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

TTV TV là gì?

TTV TV là một tiện ích mở rộng Chrome được phát triển bởi Alex Berliner, và tính năng chính của nó là "Opens a new Twitch.tv stream when a user's currently watched one closes.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng TTV TV

Tải xuống các tệp mở rộng TTV TV dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TTV TV TTV TV
ID bnmlihhhebgoiihoaicfmahhcheecoaa
URL Chính Thức https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa
Mô tả Opens a new Twitch.tv stream when a user's currently watched one closes.
Kích Thước Tệp 498 KB
Số Lần Cài Đặt 60
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-05-01
Ngày Phát Hành 2016-05-01
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Alex Berliner
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Monorail/TTVTV
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}