TV for Youtube

Makes youtube.com/tv not redirect

TV for Youtube là gì?

TV for Youtube là một tiện ích mở rộng Chrome được phát triển bởi tberghuis, và tính năng chính của nó là "Makes youtube.com/tv not redirect".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng TV for Youtube

Tải xuống các tệp mở rộng TV for Youtube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên TV for Youtube TV for Youtube
ID mbkenkpbobncoehadfogibjlhnaopcpb
URL Chính Thức https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb
Mô tả Makes youtube.com/tv not redirect
Kích Thước Tệp 101 KB
Số Lần Cài Đặt 1,636
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2021-01-19
Ngày Phát Hành 2021-01-19
Đánh Giá 3.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển tberghuis
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tberghuis/tv-for-youtube
URL Trang Trợ Giúp https://github.com/tberghuis/tv-for-youtube/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}