NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ignore link in VBB forums // @version 1.0 // @description Add quick ignore link // @copyright 2018, egoz (https://openuserjs.org//users/egoz) // @license MIT // @author egoz // @include * // @require https://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js // @grant none // ==/UserScript== // ==OpenUserJS== // @author egoz // ==/OpenUserJS== ; (function ($) { $(document).ready(function () { setTimeout(function () { $("td.vbmenu_option > a[href*='profile.php']").each(function () { var href = $(this).attr('href').replace('buddy', 'ignore'); var stringToAdd = '<tr><td class="vbmenu_option vbmenu_option_alink" style="cursor: default;"><a href="' + href + '">Ignore this user</a></td></tr>'; $(this).parent().parent().parent().append(stringToAdd); }); }); }); })(jQuery);