SkipAds

Utility to skip ad automatically

Что такое SkipAds?

SkipAds - это расширение Chrome, разработанное Aman A. Agarwal, и его основная функция - "Utility to skip ad automatically".

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

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

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

                        - Use this extension to automatically skip ads on Youtube. It just works. 
- Detects a Youtube webpage and only then works in the background. 
- Also added is a mute feature which mutes the ads and unmutes when the video playback resumes to give you uninterrupted experience
- Support for other streaming services like Saavn, Gaana, etc. to roll out in future, so stay tuned.

**Bug Fixes**
- Now works without any need for reload.                    

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

Название SkipAds SkipAds
ID fmkjadgnhcdgdgllhfdimhgocdienbdm
Официальный URL https://chrome.google.com/webstore/detail/skipads/fmkjadgnhcdgdgllhfdimhgocdienbdm
Описание Utility to skip ad automatically
Размер файла 20.26 KB
Количество установок 118
Текущая Версия 0.3
Последнее Обновление 2018-07-26
Дата публикации 2018-07-26
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Aman A. Agarwal
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipAds",
    "short_name": "SkipAds",
    "description": "Utility to skip ad automatically",
    "manifest_version": 2,
    "version": "0.3",
    "author": "Aman A. Agarwal",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}