Youtube Ad Skipper

Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.

Что такое Youtube Ad Skipper?

Youtube Ad Skipper - это расширение Chrome, разработанное Avinash Sakhreliya, и его основная функция - "Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Youtube Ad Skipper

Скачайте файлы расширений Youtube Ad Skipper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        New Update: Fix YouTube auto skip ad issue

YouTube Ad Skipper is an add-on for auto skips video ads and close all other ads after website provides a skip ad button. It does not block an ad. So you can now sit on your sofa and watch movie without any interruption.

Currently Supported Websites:

1. YouTube                    

Основная информация о расширении

Название Youtube Ad Skipper Youtube Ad Skipper
ID cheolhficilobbjkgdinaobglkppmckc
Официальный URL https://chromewebstore.google.com/detail/youtube-ad-skipper/cheolhficilobbjkgdinaobglkppmckc
Описание Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.
Размер файла 39.06 KB
Количество установок 7,810
Текущая Версия 1.0.1
Последнее Обновление 2023-11-18
Дата публикации 2020-03-31
Рейтинг 4.00/5 Всего 20 оценок
Разработчик Avinash Sakhreliya
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Ad Skipper",
    "version": "1.0.1",
    "description": "Ad Skipper is gives you less interrupted online streaming and skip or removes ad on behalf of you. It does not block an ad.",
    "permissions": [
        "tabs"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "skipper.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icon16-disabled.png",
            "48": "icon48-disabled.png",
            "128": "icon128-disabled.png"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 3
}