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”。
擴展截圖
下載Theater Mode for YouTube™ (large player view)擴展crx文件
下載Theater Mode for YouTube™ (large player view)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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) |
ID | dgognhgbpdoeidccnbfhohblklhbbomh |
官方網址 | 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" } ] } |