Theater Mode for YouTube™ (large player view)

Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out

Theater Mode for YouTube™ (large player view) là gì?

Theater Mode for YouTube™ (large player view) là một tiện ích mở rộng Chrome được phát triển bởi MeryDev, và tính năng chính của nó là "Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Theater Mode for YouTube™ (large player view)

Tải xuống các tệp mở rộng Theater Mode for YouTube™ (large player view) 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

                        This extension enables YouTube to default to theater mode for the player, even if you're not logged in. If you prefer the default mode, you can easily switch back by clicking the button in the player or using the "KeyT" shortcut. However, the next time you visit, the player will automatically be in theater mode again. The extension doesn't offer any configurable options; it functions seamlessly. It's important to note that the theater mode activated by the extension is authentic and not achieved through CSS or JS tricks; it uses YouTube's actual theater mode.

To use this feature in incognito mode, you must allow the extension to be active in this mode.

How does the extension work?
The extension employs two methods to ensure the player is in theater mode:
1. It sets the relevant cookie on each visit.
2. It triggers the necessary button press when the player loads.

For reporting any bugs, please use the discussion section found at:
https://webextension.org/listing/youtube-tools.html?theater                    

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

Tên Theater Mode for YouTube™ (large player view) Theater Mode for YouTube™ (large player view)
ID dgognhgbpdoeidccnbfhohblklhbbomh
URL Chính Thức https://chromewebstore.google.com/detail/theater-mode-for-youtube/dgognhgbpdoeidccnbfhohblklhbbomh
Mô tả Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out
Kích Thước Tệp 45.22 KB
Số Lần Cài Đặt 26,609
Phiên Bản Hiện Tại 0.2.2
Cập Nhật Lần Cuối 2023-07-20
Ngày Phát Hành 2019-04-27
Đánh Giá 3.75/5 Tổng số 80 Đánh Giá
Nhà Phát Triển MeryDev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://webextension.org/listing/youtube-tools.html?theater
URL Trang Trợ Giúp https://webextension.org/listing/youtube-tools.html?theater
URL Trang Chính Sách Bảo Mật https://add0n.com/policies/mery.dev.txt
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Theater Mode for YouTube\u2122 (large player view)",
    "description": "Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out",
    "version": "0.2.2",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "worker.js"
    },
    "homepage_url": "https:\/\/webextension.org\/listing\/youtube-tools.html?from=theater",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "\/data\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}