TV for Youtube

Makes youtube.com/tv not redirect

TV for Youtube क्या है?

TV for Youtube tberghuis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes youtube.com/tv not redirect"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TV for Youtube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ URL 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"
    }
}