Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Что такое Focused Youtube?
Focused Youtube - это расширение Chrome, разработанное makaroni4, и его основная функция - "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".
Снимки экрана расширения
Скачать файл CRX расширения Focused Youtube
Скачайте файлы расширений Focused Youtube в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages.
Extension requires access to Youtube website to change its outlook.
Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example).
Enjoy <3
Important: the extension doesn't collect any data about Youtube usage. Основная информация о расширении
| Название | |
| ID | nfghbmabdoakhobmimnjkamfdnpfammn |
| Официальный URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
| Описание | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
| Размер файла | 170 KB |
| Количество установок | 4,232 |
| Текущая Версия | 1.12 |
| Последнее Обновление | 2024-01-27 |
| Дата публикации | 2019-01-06 |
| Рейтинг | 4.88/5 Всего 72 оценок |
| Разработчик | makaroni4 |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/makaroni4/focused_youtube |
| URL страницы помощи | https://github.com/makaroni4/focused_youtube/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Focused Youtube",
"description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube",
"version": "1.12",
"author": "Anatoli Makarevich",
"icons": {
"128": "extension_icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"js": [
"assets\/extension.js"
],
"css": [
"assets\/extension.css"
],
"run_at": "document_end",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html"
},
"host_permissions": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
],
"permissions": [
"storage"
],
"web_accessible_resources": [
{
"resources": [
"fonts\/Roboto-Regular.ttf",
"assets\/popup.js",
"assets\/popup.css",
"images\/search_icon.svg",
"images\/youtube_logo.png",
"images\/search_icon_dark.svg",
"images\/youtube_logo_dark.png",
"images\/extension_icon.png"
],
"matches": [
"https:\/\/www.youtube.com\/*",
"https:\/\/m.youtube.com\/*"
]
}
]
} | |