您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
在福利吧帖子中将隐藏的链接高亮显示
当前为
// ==UserScript== // @name 福利吧好孩子看得见 // @namespace theliang // @version 1.2 // @description 在福利吧帖子中将隐藏的链接高亮显示 // @author Theliang // @match *://www.wnflb.com/thread-*.html // @require https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js // ==/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("<font color='red'>好孩子看这!</font>"); } }); })();