SkipSponsor - YouTube sponsor detection

Detect and skip YouTube™ sponsor segments using AI.

SkipSponsor - YouTube sponsor detection là gì?

SkipSponsor - YouTube sponsor detection là một tiện ích mở rộng Chrome được phát triển bởi skipsponsor, và tính năng chính của nó là "Detect and skip YouTube™ sponsor segments using AI.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SkipSponsor - YouTube sponsor detection

Tải xuống các tệp mở rộng SkipSponsor - YouTube sponsor detection dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        “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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SkipSponsor - YouTube sponsor detection SkipSponsor - YouTube sponsor detection
ID lbkmajfgpafkmmfdppcmgdabanlobfnf
URL Chính Thức https://chromewebstore.google.com/detail/skipsponsor-youtube-spons/lbkmajfgpafkmmfdppcmgdabanlobfnf
Mô tả Detect and skip YouTube™ sponsor segments using AI.
Kích Thước Tệp 14.12 KB
Số Lần Cài Đặt 409
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-08-09
Ngày Phát Hành 2022-08-09
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển skipsponsor
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}