SkipSponsor - YouTube sponsor detection

Detect and skip YouTube™ sponsor segments using AI.

SkipSponsor - YouTube sponsor detection란 무엇입니까?

SkipSponsor - YouTube sponsor detection은(는) skipsponsor에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detect and skip YouTube™ sponsor segments using AI."입니다.

확장 프로그램 스크린샷

screenshot

SkipSponsor - YouTube sponsor detection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}