SkipSponsor - YouTube sponsor detection

Detect and skip YouTube™ sponsor segments using AI.

ما هو SkipSponsor - YouTube sponsor detection؟

SkipSponsor - YouTube sponsor detection هو إضافة Chrome تم تطويرها بواسطة skipsponsor، والميزة الرئيسية لها هي "Detect and skip YouTube™ sponsor segments using AI.".

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

screenshot

تحميل ملف CRX للإضافة SkipSponsor - YouTube sponsor detection

قم بتنزيل ملفات الامتداد SkipSponsor - YouTube sponsor detection بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}