Greasy Fork is available in English.
Удалить фрагменты видео Яндекса, кроме рекламы
// ==UserScript== // @name Удалить всё кроме рекламы в Яндекс Видео // @namespace http://tampermonkey.net/ // @version 0.1 // @description Удалить фрагменты видео Яндекса, кроме рекламы // @author You // @match https://yandex.kz/video/* // @match https://yandex.ru/video/* // @require https://code.jquery.com/jquery-3.6.0.min.js // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function removeVideoSnippets() { $('.VideoSnippet-Main').not('.VideoSnippet-Main .VideoThumb3-Overlay:has(> span:contains("Реклама"))').remove(); } const observer = new MutationObserver(function() { removeVideoSnippets(); }); observer.observe(document.documentElement, { childList: true, subtree: true }); removeVideoSnippets(); })();