Netflix Skipper

Automatically skip Netflix intros, recaps, and next episode prompts.

什麼是Netflix Skipper?

Netflix Skipper是由Ran Ribenzaft開發的Chrome擴展程式,該擴展的主要功能是“Automatically skip Netflix intros, recaps, and next episode prompts.”。

擴展截圖

screenshot
screenshot

下載Netflix Skipper擴展crx文件

下載Netflix Skipper擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Automatically skip Netflix intros, recaps, and next episode prompts.

Don't waste any more time waiting or clicking on intros, recaps, and next episode buttons.

Once the extension is installed, reload or open a Netflix Tab, and it will work automatically. Through the popup, you can configure which events (intros, recaps, and next episode) you would like to skip.

This extension supports ALL Netflix languages!

GitHub repo: https://github.com/ranrib/netflix-skipper                    

擴展基本資訊

名稱 Netflix Skipper Netflix Skipper
ID lgmpgoepilkhieepoliajnandndkffab
官方網址 https://chromewebstore.google.com/detail/netflix-skipper/lgmpgoepilkhieepoliajnandndkffab
簡介 Automatically skip Netflix intros, recaps, and next episode prompts.
檔案大小 147 KB
安裝次數 3,415
目前版本 1.0
更新時間 2022-01-27
上架時間 2022-01-27
評分 5.00/5 共 9 次評分
開發者 Ran Ribenzaft
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/ranrib/netflix-skipper
說明頁面URL https://github.com/ranrib/netflix-skipper
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Skipper",
    "description": "Automatically skip Netflix intros, recaps, and next episode prompts.",
    "author": "Ran Ribenzaft",
    "version": "1.0",
    "manifest_version": 3,
    "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",
        "default_icon": {
            "16": "images\/netflix-skipper-16.png",
            "32": "images\/netflix-skipper-32.png",
            "48": "images\/netflix-skipper-48.png",
            "128": "images\/netflix-skipper-128.png"
        }
    },
    "icons": {
        "16": "images\/netflix-skipper-16.png",
        "32": "images\/netflix-skipper-32.png",
        "48": "images\/netflix-skipper-48.png",
        "128": "images\/netflix-skipper-128.png"
    }
}