TV for Youtube

Makes youtube.com/tv not redirect

Cos'è TV for Youtube?

TV for Youtube è un'estensione di Chrome sviluppata da tberghuis, e la sua funzione principale è "Makes youtube.com/tv not redirect".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TV for Youtube

Scarica i file di estensione TV for Youtube in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
URL Ufficiale https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Descrizione Makes youtube.com/tv not redirect
Dimensione del File 101 KB
Conteggio Installazioni 1,636
Versione Corrente 0.0.3
Ultimo Aggiornamento 2021-01-19
Data di Pubblicazione 2021-01-19
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore tberghuis
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/tberghuis/tv-for-youtube
URL della Pagina di Aiuto https://github.com/tberghuis/tv-for-youtube/issues
Lingue Supportate 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"
    }
}