Remove YouTube Annotations
This extension will remove all of the annoying annotations from YouTube videos.
Что такое Remove YouTube Annotations?
Remove YouTube Annotations - это расширение Chrome, разработанное michaeljamore, и его основная функция - "This extension will remove all of the annoying annotations from YouTube videos.".
Скачать файл CRX расширения Remove YouTube Annotations
Скачайте файлы расширений Remove YouTube Annotations в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Annotations are those annoying popups that you see on top of YouTube videos. They are distracting and it's inconvenient to close them as they popup while you're watching a video. This extension automatically removes them for you, creating a distraction free viewing experience.
Основная информация о расширении
Название | ![]() |
ID | fhokegfbegdagjeldmgapodjkbdipifp |
Официальный URL | https://chrome.google.com/webstore/detail/remove-youtube-annotation/fhokegfbegdagjeldmgapodjkbdipifp |
Описание | This extension will remove all of the annoying annotations from YouTube videos. |
Размер файла | 3.73 KB |
Количество установок | 33 |
Текущая Версия | 1.0 |
Последнее Обновление | 2015-11-08 |
Дата публикации | 2015-11-08 |
Рейтинг | 3.67/5 Всего 6 оценок |
Разработчик | michaeljamore |
Тип оплаты | free |
Официальный сайт расширения | http://mjamore.com |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Remove YouTube Annotations", "description": "This extension will remove all of the annoying annotations from YouTube videos.", "version": "1.0", "browser_action": { "default_icon": "close.png", "default_title": "Remove YouTube Annotations" }, "permissions": [ "activeTab", "https:\/\/www.youtube.com\/*" ], "content_scripts": [ { "js": [ "script.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |