YouTube Zen Mode
Get rid of all the distractions on YouTube
什麼是YouTube Zen Mode?
YouTube Zen Mode是由Marbl開發的Chrome擴展程式,該擴展的主要功能是“Get rid of all the distractions on YouTube”。
擴展截圖
下載YouTube Zen Mode擴展crx文件
下載YouTube Zen Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Zen mode extension removes distractions from YouTube. May it be a content such as a news feed, notifications or suggestions of similar videos to the one you are currently watching on youtube.
擴展基本資訊
名稱 | YouTube Zen Mode |
ID | dgdfifjibepijpnledojfgcaggckaclb |
官方網址 | https://chromewebstore.google.com/detail/youtube-zen-mode/dgdfifjibepijpnledojfgcaggckaclb |
簡介 | Get rid of all the distractions on YouTube |
檔案大小 | 399 KB |
安裝次數 | 212 |
目前版本 | 2.1.2 |
更新時間 | 2023-01-10 |
上架時間 | 2020-11-14 |
評分 | 5.00/5 共 6 次評分 |
開發者 | Marbl |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Zen Mode", "version": "2.1.2", "description": "Get rid of all the distractions on YouTube", "manifest_version": 3, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage", "tabs", "webNavigation", "webRequest" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "action": { "default_popup": "popup.html", "default_title": "Zen", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "background": { "service_worker": "background.js" }, "browser_specific_settings": { "gecko": { "id": "{80b1557a-ec9a-4e6e-8877-8aa4f146c413}" } }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube\/main.js" ], "css": [ "youtube\/youtube.css" ], "run_at": "document_end" } ] } |