NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ukrywanie różowych // @namespace http://tampermonkey.net/ // @version 0.1 // @description Ukrywa wpisy różowych na mirko // @author You // @match http://www.wykop.pl/mikroblog/* // @grant none // @updateURL https://openuserjs.org/meta/wykop_skrypty/Ukrywanie_różowych.meta.js // ==/UserScript== (function() { 'use strict'; $($(".nav.bspace.rbl-block > ul")[0]).append('<li><a id=\"rozowe\" href=\"#\">Ukryj różowe</a></li>'); $("#rozowe").click(function() { $(".entry.iC").each(function() { var avatar = $(this).find(".profile > img")[0]; if($(avatar).attr('class') === "avatar female lazy") $(this).hide(); }); }); })();