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ファイルをダウンロード

SkipSponsor - YouTube sponsor detection拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        “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
Eメール [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"
    }
}