Netflix Skipper

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

Netflix Skipperคืออะไร?

Netflix Skipper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ran Ribenzaft และคุณลักษณะหลักของมันคือ "Automatically skip Netflix intros, recaps, and next episode prompts."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Skipper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}