AdSkipper

This extension will skip youtube ads.

Что такое AdSkipper?

AdSkipper - это расширение Chrome, разработанное Abhishek Meharia, и его основная функция - "This extension will skip youtube ads.".

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

screenshot

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

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

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

                        AdSkipper for Youtube™ is a content filtering and ad blocking browser extension which blocks ads on Youtube™.

Automatically clicks 'Skip Ad' buttons for you.

It doesn't block ads, it just clicks close button and skip ad for you automatically. Useful if you are listening to music in office areas or 
if you are bit lazy to press that button.                    

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

Название AdSkipper AdSkipper
ID paeoelngbckenlidinleldbemhkdiphi
Официальный URL https://chromewebstore.google.com/detail/adskipper/paeoelngbckenlidinleldbemhkdiphi
Описание This extension will skip youtube ads.
Размер файла 59.06 KB
Количество установок 2,555
Текущая Версия 0.7
Последнее Обновление 2021-06-27
Дата публикации 2019-08-14
Рейтинг 4.50/5 Всего 8 оценок
Разработчик Abhishek Meharia
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://abhim.in
URL страницы помощи https://abhim.in
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AdSkipper",
    "description": "This extension will skip youtube ads.",
    "version": "0.7",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "commands": {
        "toggle-feature-foo": {
            "suggested_key": {
                "default": "Ctrl+Shift+K",
                "mac": "MacCtrl+Shift+K"
            },
            "description": "Switches between play and pause state.",
            "name": "Play pause shortcut command",
            "global": true
        }
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.js",
                "skip.js"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' https:\/\/www.gstatic.com\/ https:\/\/*.firebaseio.com https:\/\/www.googleapis.com; object-src 'self'"
}