Enhancer for YouTube™
Take control of YouTube and boost your user experience!
Skip sponsorships, subscription begging and more on YouTube videos. Report sponsors on videos you watch to save others' time.
Review user movement across collected snapshots.
View collected rating snapshots from the latest 7-day window to assess rating stability.
Compare 1-day, 7-day, and 30-day net growth and growth rate.
Review publication date, version, supported languages, and crawl timestamps.
Review the store description, core capabilities, and common use cases.
Available on Firefox as well, visit my site: https://sponsor.ajay.app.
SponsorBlock lets you skip over sponsors, intros, outros, subscription reminders, and other annoying parts of YouTube videos. SponsorBlock is a crowdsourced browser extension that lets anyone submit the start and end times of sponsored segments and other segments of YouTube videos. Once one person submits this information, everyone else with this extension will skip right over the sponsored segment.
You can also skip over non music sections of music videos.
This is open source and the entire database is public.
Permission explanations:
Access your data for youtube.com, www.youtube-nocookie.com:
Inspect the latest comments and rating distribution.
Store average score: 4.7. The bars below are calculated from synced review text only, so they may be empty for extensions that have public ratings but no synced comments yet.
Review related products from the Chrome Web Store detail page.
Take control of YouTube and boost your user experience!
Returns ability to see dislikes
Replaces thumbnails and modifies titles of videos on youtube.com
Play the Youtube shorts video as if it were a normal video.
Community version of the extension `I don't care about cookies` (no Avast)
Displays a rating bar (likes/dislikes) on the bottom of every YouTube™ video thumbnail.
best
Great! Now I don't have to watch rich YouTubers beg for more money.
Не хватает возможности установить стартовую отметку по умолчанию для всех видео. GPT сделал мне код для Tampermonkey. Он заставляет проигрывать ролик с 90й секунды. Если точка попадает в пропускаемый отрезок, то видео перематывается в конец пропускаемого отрезка. // ==UserScript== // @name YouTube Auto Start Time with SponsorBlock Skip // @namespace http://tampermonkey.net/ // @version 0.9 // @description Автоматическое начало воспроизведения видео на YouTube с определенного времени с пропуском спонсорских сегментов SponsorBlock // @author Вы // @match *://*.youtube.com/* // @grant none // ==/UserScript== (function() { 'use strict'; const targetTime = 90; // Установите время начала (в секундах) // Функция для получения данных от SponsorBlock API async function fetchSponsorBlockSegments(videoId) { const url = `https://sponsor.ajay.app/api/skipSegments?videoID=${videoId}&category=sponsor`; try { const response = await fetch(url); if (response.ok) { const data = await response.json(); if (Array.isArray(data)) { return data; } else { console.error('Неверный формат данных:', data); } } else { console.error('Ошибка HTTP:', response.status); } } catch (error) { console.error('Ошибка при получении данных от SponsorBlock:', error); } return []; } // Функция для проверки, попадает ли время в спонсорский сегмент function getSkipTime(segments, time) { // Найти последний сегмент, который охватывает целевое время let skipTime = null; for (const segment of segments) { if (time >= segment.segment[0] && time <= segment.segment[1]) { // Перемотка в конец спонсорского сегмента skipTime = segment.segment[1]; } } return skipTime; } // Основная функция для установки времени начала async function setStartTime() { const video = document.querySelector('video'); if (!video) return; const videoId = new URLSearchParams(window.location.search).get('v'); if (!videoId) return; const segments = await fetchSponsorBlockSegments(videoId); const skipTime = getSkipTime(segments, targetTime); // Перематываем видео if (video.currentTime < targetTime) { if (skipTime !== null) { video.currentTime = skipTime; } else { video.currentTime = targetTime; } } } // Запуск при загрузке страницы и смене видео window.addEventListener('yt-navigate-finish', setStartTime); window.addEventListener('load', setStartTime); })();
このアプリはYoutubeが出す広告をブロックやスキップするものではありません。 あくまで動画本編中にある自己のチャンネル登録や行動を促すシーン、オープニング/エンディングアニメ、尺余り尺伸ばし、ステマやスポンサー提供品のレビューの警告など不要だったり不快だったりする部分を皆で投稿しスキップまたは警告を表示できるものです。 同作者が手掛けるDeArrowと同様日本ではあまり普及していませんが、ある程度再生数のある海外動画を見るとスポンサーの宣伝だったり動画タイトルと関係ない話題の部分は軒並みスキップされます。
спасибо гениям сделавшим это
Хорошее расширение :)
Amazing extension! I love it and use it everyday. I know its a big feature request, but we would need the same thing for the longform videos posted on x.com!
Virker ikke på YouTube. Ligesom mange af de andre såkaldte blockers. :(
Aqui não esta funcionando. Não recomendo
Amazing idea, great execution, free, open-source, literally time-saving extension