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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
    }
}