TV for Youtube

Makes youtube.com/tv not redirect

TV for Youtube란 무엇입니까?

TV for Youtube은(는) tberghuis에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes youtube.com/tv not redirect"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TV for Youtube 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Chrome extension that allows the viewing of the TV interface through the browser.
Features a control to allow for fullscreen mode.
Replaces User-Agent request header so that google will reply with the old working leanback interface.                    

확장 프로그램 기본 정보

이름 TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
공식 URL https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
설명 Makes youtube.com/tv not redirect
파일 크기 101 KB
설치 횟수 1,636
현재 버전 0.0.3
최근 업데이트 2021-01-19
출시 날짜 2021-01-19
평점 3.50/5 총 2 개의 평점
개발자 tberghuis
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/tberghuis/tv-for-youtube
도움말 페이지 URL https://github.com/tberghuis/tv-for-youtube/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TV for Youtube",
    "description": "Makes youtube.com\/tv not redirect",
    "version": "0.0.3",
    "manifest_version": 2,
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "https:\/\/www.youtube.com\/tv"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "fontawesome\/all.css",
                "content.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/tv"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "fullscreen.png",
        "fontawesome\/webfonts\/fa-solid-900.woff2"
    ],
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    }
}