TV for Youtube

Makes youtube.com/tv not redirect

ما هو TV for Youtube؟

TV for Youtube هو إضافة Chrome تم تطويرها بواسطة tberghuis، والميزة الرئيسية لها هي "Makes youtube.com/tv not redirect".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة TV for Youtube

قم بتنزيل ملفات الامتداد TV for Youtube بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
عنوان URL الرسمي https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
الوصف Makes youtube.com/tv not redirect
حجم الملف 101 KB
عدد التثبيتات 1,636
النسخة الحالية 0.0.3
آخر تحديث 2021-01-19
تاريخ النشر 2021-01-19
تقييم 3.50/5 مجموع تقييمات 2
المطور tberghuis
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tberghuis/tv-for-youtube
عنوان صفحة المساعدة https://github.com/tberghuis/tv-for-youtube/issues
اللغات المدعومة 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"
    }
}