NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hardverapró hirdető letiltása // @namespace http://prohardver.hu/tag/supreme7.html // @version 0.2 // @description Hardverapró kiválasztott hirdetők hirdetéseinek elrejtése // @author Supreme7 // @include *hardverapro.hu/* // @grant none // @require http://code.jquery.com/jquery-latest.js // @license MIT // @copyright 2019, Supreme7 (https://openuserjs.org/users/Supreme7) // @updateURL https://openuserjs.org/meta/Supreme7/Hardverapró_hirdető_letiltása.meta.js // ==/UserScript== /* jshint -W097 */ 'use strict'; //////////////////////////////// /// ADD MEG A BLOKKOLT HIRDETŐK NEVEIT //////////////////////////////// var disabled_users = ["hirdető1", "hirdető2"]; $(document).ready(function() { if($(".uad-list").length){ $(".uad-list li").each(function() { var nick = $(this).find(".uad-misc").find("a").first().text(); var title = $(this).find(".uad-title").find("a").first().text(); if (jQuery.inArray(nick, disabled_users) != -1) { console.log(nick + " hirdetése elrejtve. ("+title+") ") $(this).hide(); } }); } });