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