TV for Youtube

Makes youtube.com/tv not redirect

Co to jest TV for Youtube?

TV for Youtube to rozszerzenie Chrome opracowane przez tberghuis, a jego główną funkcją jest „Makes youtube.com/tv not redirect”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia TV for Youtube

Pobierz pliki rozszerzeń TV for Youtube w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
Oficjalny URL https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Opis Makes youtube.com/tv not redirect
Rozmiar pliku 101 KB
Liczba instalacji 1,636
Aktualna Wersja 0.0.3
Ostatnia Aktualizacja 2021-01-19
Data Publikacji 2021-01-19
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper tberghuis
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/tberghuis/tv-for-youtube
Adres URL Strony Pomocy https://github.com/tberghuis/tv-for-youtube/issues
Obsługiwane Języki 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"
    }
}