// ==UserScript== // @name 福利吧好孩子看得见(改) // @version 2.0.3 // @icon http://www.wnflb99.com/favicon.ico // @description 在福利吧帖子中将隐藏的链接、文字高亮显示 // @author 于云蔚 // @match *://www.wnflb99.com/thread-* // @match *://www.wnflb99.com/forum.php?mod=viewthread&tid=* // @match *://www.wnflb99.com/forum.php?mod=viewthread&tid=* // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js // @blog http://selier.cnblogs.com/ // @namespace hhzkdj // @downloadURL none // ==/UserScript== (function() { $(".t_f font").attr("color", "red"); $(".t_f a>font").text("好孩子看这!"); $(".t_f a").each(function() { var contains = $(this).text(); if(contains.length < 2) { $(this).html("好孩子看这!"); } }); var html = $('td[id^="postmessage_"]').eq(0).html(); var reg = /()(https?:\/\/.*?)"+s+"<"; //}); html = html.replace(reg,function(rs,$1,$2,offset,source){ return $1+""+$2+"<"; }); $('td[id^="postmessage_"]').eq(0).html(html); })();