Youtube Skip Videos
This extension gives you the possibility to skip Youtube autoplay videos
Что такое Youtube Skip Videos?
Youtube Skip Videos - это расширение Chrome, разработанное Megroplan, и его основная функция - "This extension gives you the possibility to skip Youtube autoplay videos".
Снимки экрана расширения
Скачать файл CRX расширения Youtube Skip Videos
Скачайте файлы расширений Youtube Skip Videos в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Just add a song to the blacklist and it will disappear forever the Youtube auto-play song lists. Any suggestion is appreciated.
Основная информация о расширении
Название | |
ID | innnldmilgnenognmdbjljofbkbmblff |
Официальный URL | https://chrome.google.com/webstore/detail/youtube-skip-videos/innnldmilgnenognmdbjljofbkbmblff |
Описание | This extension gives you the possibility to skip Youtube autoplay videos |
Размер файла | 171 KB |
Количество установок | 26 |
Текущая Версия | 1.1.3 |
Последнее Обновление | 2019-06-27 |
Дата публикации | 2019-06-27 |
Рейтинг | 4.86/5 Всего 7 оценок |
Разработчик | Megroplan |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Skip Videos", "description": "This extension gives you the possibility to skip Youtube autoplay videos", "version": "1.1.3", "browser_action": { "default_icon": "img\/youtube.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "contextMenus", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "js\/jquery-3.1.1.min.js", "contentYoutube.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ] } |