SkIntro

This extension auto skips intro for streaming services.

ما هو SkIntro؟

SkIntro هو إضافة Chrome تم تطويرها بواسطة Rehan Ahmed، والميزة الرئيسية لها هي "This extension auto skips intro for streaming services.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة SkIntro

قم بتنزيل ملفات الامتداد SkIntro بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Do you always press that "Skip Intro" button when watching a show online? What if there was an app that did that for you?

SkIntro was born out of that idea and it supports auto-skipping intros on multiple streaming services,
- Netflix
- Disney+
- Peacock
- Amazon PrimeVideo

Support for more services is coming soon.

It also works as an ad-blocker by auto-skipping ads on YouTube by pressing the "Skip Ad" button as soon as it appears.                    

معلومات أساسية عن التمديد

الاسم SkIntro SkIntro
ID acjikceibgbijbnhfialnjhilckdajan
عنوان URL الرسمي https://chromewebstore.google.com/detail/skintro/acjikceibgbijbnhfialnjhilckdajan
الوصف This extension auto skips intro for streaming services.
حجم الملف 168 KB
عدد التثبيتات 465
النسخة الحالية 1.1
آخر تحديث 2021-09-15
تاريخ النشر 2021-07-21
تقييم 4.20/5 مجموع تقييمات 5
المطور Rehan Ahmed
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/reallyrehan/skintro
عنوان صفحة المساعدة https://github.com/reallyrehan/skintro
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SkIntro",
    "description": "This extension auto skips intro for streaming services.",
    "version": "1.1",
    "icons": {
        "128": "icon.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.netflix.com\/*",
                "https:\/\/*.amazon.com\/*",
                "https:\/\/*.peacocktv.com\/*",
                "https:\/\/*.disneyplus.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "utilities.js"
            ],
            "run_at": "document_end"
        }
    ]
}