TV for Youtube

Makes youtube.com/tv not redirect

Was ist TV for Youtube?

TV for Youtube ist eine Chrome-Erweiterung, die von tberghuis entwickelt wurde, und ihr Hauptmerkmal ist "Makes youtube.com/tv not redirect".

Erweiterungsscreenshots

screenshot
screenshot

TV for Youtube-Erweiterungs-CRX-Datei herunterladen

Laden Sie TV for Youtube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
Offizielle URL https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Beschreibung Makes youtube.com/tv not redirect
Dateigröße 101 KB
Installationsanzahl 1,636
Aktuelle Version 0.0.3
Letztes Update 2021-01-19
Veröffentlichungsdatum 2021-01-19
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler tberghuis
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/tberghuis/tv-for-youtube
Hilfeseite URL https://github.com/tberghuis/tv-for-youtube/issues
Unterstützte Sprachen 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"
    }
}