TV for Youtube

Makes youtube.com/tv not redirect

Apa itu TV for Youtube?

TV for Youtube adalah ekstensi Chrome yang dikembangkan oleh tberghuis, dan fitur utamanya adalah "Makes youtube.com/tv not redirect".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi TV for Youtube

Unduh file ekstensi TV for Youtube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
URL Resmi https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Deskripsi Makes youtube.com/tv not redirect
Ukuran File 101 KB
Jumlah Instalasi 1,636
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2021-01-19
Tanggal Publikasi 2021-01-19
Penilaian 3.50/5 Total 2 Penilaian
Pengembang tberghuis
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/tberghuis/tv-for-youtube
URL Halaman Bantuan https://github.com/tberghuis/tv-for-youtube/issues
Bahasa yang Didukung 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"
    }
}