YouTube Comment Remover
A very simple extension to hide all YouTube comments.
Что такое YouTube Comment Remover?
YouTube Comment Remover - это расширение Chrome, разработанное Tim Stephani, и его основная функция - "A very simple extension to hide all YouTube comments.".
Снимки экрана расширения
Скачать файл CRX расширения YouTube Comment Remover
Скачайте файлы расширений YouTube Comment Remover в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
After realizing how horrible the comments section of YouTube is, I decided to create this super simple extension to automatically hide them.
Source available here: https://github.com/timmystephani/youtube_comment_remover
History
---------
v1.0 - First version Основная информация о расширении
| Название | |
| ID | nglipklighejjehapaodhmipldpljobp |
| Официальный URL | https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp |
| Описание | A very simple extension to hide all YouTube comments. |
| Размер файла | 33.33 KB |
| Количество установок | 97 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2015-03-16 |
| Дата публикации | 2015-03-16 |
| Рейтинг | 3.67/5 Всего 3 оценок |
| Разработчик | Tim Stephani |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "YouTube Comment Remover",
"description": "A very simple extension to hide all YouTube comments.",
"version": "1.0",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"jquery-2.1.3.min.js",
"main.js"
]
}
]
} | |