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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        ]
    }
}