NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Y.Music.noAd // @namespace https://openuserjs.org/users/ghost4luck // @version 0.3 // @description no annoying text ad // @author ghost4luck // @copyright 2020, ghost4luck (https://openuserjs.org/users/ghost4luck) // @license MIT // @include *music.yandex.ru* // @icon https://music.yandex.ru/favicon.ico // @grant none // @updateURL https://openuserjs.org/meta/ghost4luck/Y.Music.noAd.meta.js // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { // do not run in frames if (window.self != window.top) return; // subscribe ad $('.bar>.bar-below').hide(); // sidebar ad $('.sidebar__under').hide(); // sidebr additional ad $('.bar__addition-link').hide(); // sidebar iframe ad wrapper var sidebar = $('.sidebar.deco-pane'); sidebar.children(':not(.deco-shade)').children(':not(.teaser):not(.teaser-nonmusic)').remove(); }); })(window);