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文件

下載TV for Youtube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}