YouTube Zen Mode
Get rid of all the distractions on YouTube
Что такое YouTube Zen Mode?
YouTube Zen Mode - это расширение Chrome, разработанное Marbl, и его основная функция - "Get rid of all the distractions on YouTube".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Zen Mode
Скачайте файлы расширений 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 |
Официальный URL | 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" } ] } |