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
公式URL 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
Eメール [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"
    }
}