Zen YouTube: Distraction free youtube
Removes feed and recommendations from YouTube so that you can have a distraction free focused session
Что такое Zen YouTube: Distraction free youtube?
Zen YouTube: Distraction free youtube - это расширение Chrome, разработанное Vishnu Gt, и его основная функция - "Removes feed and recommendations from YouTube so that you can have a distraction free focused session".
Снимки экрана расширения
Скачать файл CRX расширения Zen YouTube: Distraction free youtube
Скачайте файлы расширений Zen YouTube: Distraction free youtube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension helps you have a distraction free YouTube session by removing the recommendations and your home page feed so that you don't end up watching YouTube for hours.
Github Link: https://github.com/vishnugt/Zen-Youtube Основная информация о расширении
| Название | |
| ID | ibcpcdiajmfmkieocebkoiofgdbbecel |
| Официальный URL | https://chromewebstore.google.com/detail/zen-youtube-distraction-f/ibcpcdiajmfmkieocebkoiofgdbbecel |
| Описание | Removes feed and recommendations from YouTube so that you can have a distraction free focused session |
| Размер файла | 10.31 KB |
| Количество установок | 6,000 |
| Текущая Версия | 2.0.0 |
| Последнее Обновление | 2022-02-09 |
| Дата публикации | 2021-10-24 |
| Рейтинг | 5.00/5 Всего 21 оценок |
| Разработчик | Vishnu Gt |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/vishnugt/Zen-Youtube |
| URL страницы помощи | https://github.com/vishnugt/Zen-Youtube |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Zen YouTube: Distraction free youtube",
"version": "2.0.0",
"manifest_version": 2,
"description": "Removes feed and recommendations from YouTube so that you can have a distraction free focused session",
"homepage_url": "https:\/\/github.com\/vishnugt\/Zen-Youtube",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"https:\/\/www.youtube.com\/*",
"storage"
],
"browser_action": {
"default_popup": "popup\/popup.html"
},
"content_scripts": [
{
"run_at": "document_start",
"matches": [
"https:\/\/www.youtube.com\/*"
],
"js": [
"inject.js"
],
"all_frames": true
}
]
} | |