YouTube Distraction Killer
Remove distracting elements from YouTube's layout
Что такое YouTube Distraction Killer?
YouTube Distraction Killer - это расширение Chrome, разработанное nizioleque, и его основная функция - "Remove distracting elements from YouTube's layout".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Distraction Killer
Скачайте файлы расширений YouTube Distraction Killer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Do you find yourself watching cute kitten videos instead of educational content all the time? Get rid of all the reccomendations, suggestions, comments and other tempting buttons! Easily choose what is hidden using the options menu! If you experience any issues, please feel free to email me with a bug report.
Основная информация о расширении
Название | YouTube Distraction Killer |
ID | pahjidceabkifggkmokpmlmhoaiflaeh |
Официальный URL | https://chromewebstore.google.com/detail/youtube-distraction-kille/pahjidceabkifggkmokpmlmhoaiflaeh |
Описание | Remove distracting elements from YouTube's layout |
Размер файла | 28.3 KB |
Количество установок | 153 |
Текущая Версия | 1.3 |
Последнее Обновление | 2022-04-19 |
Дата публикации | 2022-04-19 |
Рейтинг | 4.75/5 Всего 4 оценок |
Разработчик | nizioleque |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.3", "default_locale": "en", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |