TV for Youtube

Makes youtube.com/tv not redirect

Wat is TV for Youtube?

TV for Youtube is een Chrome-extensie ontwikkeld door tberghuis, en de belangrijkste functie is "Makes youtube.com/tv not redirect".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie TV for Youtube

Download TV for Youtube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
Officiële URL https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Beschrijving Makes youtube.com/tv not redirect
Bestandsgrootte 101 KB
Aantal Installaties 1,636
Huidige Versie 0.0.3
Laatst Bijgewerkt 2021-01-19
Publicatiedatum 2021-01-19
Beoordeling 3.50/5 Totaal 2 Beoordelingen
Ontwikkelaar tberghuis
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/tberghuis/tv-for-youtube
Help Pagina-URL https://github.com/tberghuis/tv-for-youtube/issues
Ondersteunde Talen 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"
    }
}