SkipSponsor - YouTube sponsor detection

Detect and skip YouTube™ sponsor segments using AI.

SkipSponsor - YouTube sponsor detection क्या है?

SkipSponsor - YouTube sponsor detection skipsponsor द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Detect and skip YouTube™ sponsor segments using AI."।

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

screenshot

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

crx प्रारूप में SkipSponsor - YouTube sponsor detection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        “This video was sponsored by…” SKIP.


SkipSponsor is a lightweight extension that detects sponsor segments in YouTube videos using Natural Language Processing (NLP) and displays a button that allows you to skip over them.

The detection is made by a Machine Learning model that was trained on the transcripts of over 300,000 videos, annotated by the crowd-sourced dataset SponsorBlock. The model itself is hosted on a server so all the computation required is done outside of the browser, keeping the extension as lightweight as possible.

Source code: https://github.com/veselink1/sponsorml-ytcaptions                    

एक्सटेंशन की मूल जानकारी

नाम SkipSponsor - YouTube sponsor detection SkipSponsor - YouTube sponsor detection
ID lbkmajfgpafkmmfdppcmgdabanlobfnf
आधिकारिक URL https://chromewebstore.google.com/detail/skipsponsor-youtube-spons/lbkmajfgpafkmmfdppcmgdabanlobfnf
विवरण Detect and skip YouTube™ sponsor segments using AI.
फ़ाइल का आकार 14.12 KB
स्थापना संख्या 409
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2022-08-09
प्रकाशन तिथि 2022-08-09
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर skipsponsor
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SkipSponsor - YouTube sponsor detection",
    "description": "Detect and skip YouTube\u2122 sponsor segments using AI.",
    "version": "1.0.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/watch*"
            ],
            "css": [
                "stylesheet.css"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "permissions": [
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "playerScript.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png"
    },
    "action": {
        "default_title": "SkipSponsor",
        "default_popup": "popup.html"
    }
}