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)란 무엇입니까?

Theater Mode for YouTube™ (large player view)은(는) MeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out"입니다.

확장 프로그램 스크린샷

screenshot

Theater Mode for YouTube™ (large player view) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Theater Mode for YouTube™ (large player view) Theater Mode for YouTube™ (large player view)
ID dgognhgbpdoeidccnbfhohblklhbbomh
공식 URL https://chromewebstore.google.com/detail/theater-mode-for-youtube/dgognhgbpdoeidccnbfhohblklhbbomh
설명 Forces YouTube to open the player in the theater mode (full-width mode) even if you are logged out
파일 크기 45.22 KB
설치 횟수 26,609
현재 버전 0.2.2
최근 업데이트 2023-07-20
출시 날짜 2019-04-27
평점 3.75/5 총 80 개의 평점
개발자 MeryDev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://webextension.org/listing/youtube-tools.html?theater
도움말 페이지 URL https://webextension.org/listing/youtube-tools.html?theater
개인정보 보호 정책 페이지 URL https://add0n.com/policies/mery.dev.txt
지원되는 언어 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"
        }
    ]
}