TV for Youtube

Makes youtube.com/tv not redirect

What is TV for Youtube?

TV for Youtube is a Chrome extension developed by tberghuis, and its main feature is "Makes youtube.com/tv not redirect".

Extension Screenshots

screenshot
screenshot

Download TV for Youtube Extension CRX File

Download TV for Youtube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
Official URL https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Description Makes youtube.com/tv not redirect
File Size 101 KB
Installation Count 1,636
Current Version 0.0.3
Last Updated 2021-01-19
Publish Date 2021-01-19
Rating 3.50/5 Total 2 Ratings
Developer tberghuis
Email [email protected]
Payment Type free
Extension Website https://github.com/tberghuis/tv-for-youtube
Help Page URL https://github.com/tberghuis/tv-for-youtube/issues
Supported Languages 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"
    }
}