Skippy

Skippy is a cool little dude who loves to skip stuff.

Что такое Skippy?

Skippy - это расширение Chrome, разработанное ygordanniel, и его основная функция - "Skippy is a cool little dude who loves to skip stuff.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Skippy is a cool assistant for your video streaming platforms. 

- Netflix: skips intros and to next episode when is available and also prevents it from asking that annoying "Are you still watching?";
- PrimeVideo: skips ads, intros and to next episode when is available;
- Youtube: skips ads and close ad banners;                    

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

Название Skippy Skippy
ID nalcdfokpimbmoibllleafajnjjhnaen
Официальный URL https://chromewebstore.google.com/detail/skippy/nalcdfokpimbmoibllleafajnjjhnaen
Описание Skippy is a cool little dude who loves to skip stuff.
Размер файла 5.83 KB
Количество установок 94
Текущая Версия 1.3
Последнее Обновление 2019-03-22
Дата публикации 2019-03-21
Рейтинг 5.00/5 Всего 2 оценок
Разработчик ygordanniel
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Skippy",
    "description": "Skippy is a cool little dude who loves to skip stuff.",
    "version": "1.3",
    "icons": {
        "48": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*",
                "*:\/\/*.primevideo.com\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}