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.".
Снимки экрана расширения
Скачать файл CRX расширения SkipSponsor - YouTube sponsor detection
Скачайте файлы расширений 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 Основная информация о расширении
| Название | |
| 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": [
" | |