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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
        }
    ]
}