mySkip
Extension for automatically skipping video ads and closing banner ads on YouTube
Что такое mySkip?
mySkip - это расширение Chrome, разработанное thedaviddelta, и его основная функция - "Extension for automatically skipping video ads and closing banner ads on YouTube".
Снимки экрана расширения
Скачать файл CRX расширения mySkip
Скачайте файлы расширений mySkip в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension is basically formed by a simple script that uses an observer to detect and skip/close any new ad (video or banner) on a YouTube video. Основная информация о расширении
| Название | |
| ID | ohmcfchlgaajmendoliochefcnbhdibb |
| Официальный URL | https://chromewebstore.google.com/detail/myskip/ohmcfchlgaajmendoliochefcnbhdibb |
| Описание | Extension for automatically skipping video ads and closing banner ads on YouTube |
| Размер файла | 7.14 KB |
| Количество установок | 263 |
| Текущая Версия | 1.2 |
| Последнее Обновление | 2020-03-04 |
| Дата публикации | 2020-03-03 |
| Разработчик | thedaviddelta |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "mySkip",
"description": "Extension for automatically skipping video ads and closing banner ads on YouTube",
"version": "1.2",
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"main.js"
]
}
],
"icons": {
"128": "icon.png"
}
} | |