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是由Michaël Faurel开发的Chrome扩展程序,该扩展的主要功能是“Automatically skip Netflix, Prime Video and Disney plus intros, recaps, and next episode prompts.”。

扩展截图

screenshot

下载Skipfast intro, recap, next and more扩展crx文件

下载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"
    }
}