Skipfast intro, recap, next and more

Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.

Что такое Skipfast intro, recap, next and more?

Skipfast intro, recap, next and more - это расширение Chrome, разработанное Michaël Faurel, и его основная функция - "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.".

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

screenshot

Скачать файл CRX расширения Skipfast intro, recap, next and more

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

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

                        Automatically skip Intro, Recaps and Next episode for Netflix, AppleTV, Prime Video and Disney plus prompts.

IMPORTANT: you need to refresh the Netflix, AppleTV, Prime Video or Disney plus page only once after installing the extension. It's not dependent on language.

You can check the code here : https://github.com/mfaurel/skipfast
You can open an issue or send a pull request if you find any bug.

If you want to buy me a coffee, here's my paypal : https://paypal.me/MichaelFaurel                    

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

Название Skipfast intro, recap, next and more Skipfast intro, recap, next and more
ID gjaffkjplmcnjonnmoagianaeacjfipj
Официальный URL https://chromewebstore.google.com/detail/skipfast-intro-recap-next/gjaffkjplmcnjonnmoagianaeacjfipj
Описание Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.
Размер файла 351 KB
Количество установок 121
Текущая Версия 2.0.0
Последнее Обновление 2023-12-04
Дата публикации 2022-03-13
Рейтинг 5.00/5 Всего 5 оценок
Разработчик Michaël Faurel
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/mfaurel/skipfast
URL страницы помощи https://github.com/mfaurel/skipfast/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Skipfast intro, recap, next and more",
    "description": "Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.",
    "author": "Micha\u00ebl Faurel",
    "version": "2.0.0",
    "manifest_version": 3,
    "icons": {
        "128": "src\/assets\/icon128x128_2.png"
    },
    "background": {
        "service_worker": "src\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "src\/content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ],
    "action": {
        "default_popup": "src\/popup.html"
    }
}