SkIntro

This extension auto skips intro for streaming services.

SkIntro क्या है?

SkIntro Rehan Ahmed द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension auto skips intro for streaming services."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SkIntro एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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"
        }
    ]
}