您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Is this what my life has become?
// ==UserScript== // @name Pandabutt // @version 0.10 // @description Is this what my life has become? // @author Tjololo // @match http://mturkforum.com/* // @match http://www.mturkgrind.com/* // @require http://code.jquery.com/jquery-git.js // @namespace https://gf.qytechs.cn/users/710 // ==/UserScript== $("div.postbody").each(function() { replaceText($(this)); }); $("div.messageContent").each(function() { replaceText($(this)); }); function replaceText(item) { var oldtext = item.html(); var newtext = oldtext.replace(/(images\/)?butt/g, function($0,$1){ return $1?$0:"PLACEHOLDER";}); newtext = newtext.replace(/panda/g, "butt"); newtext = newtext.replace(/PLACEHOLDERon/g, "button"); newtext = newtext.replace(/PLACEHOLDER/g, "panda"); newtext = newtext.replace(/body/g, "pony"); newtext = newtext.replace(/people/g, "ponies"); newtext = newtext.replace(/person/g, "pony"); newtext = newtext.replace(/hands/g, "hooves"); newtext = newtext.replace(/hand/g, "hoof"); newtext = newtext.replace(/foot/g, "hoof"); newtext = newtext.replace(/feet/g, "hooves"); newtext = newtext.replace(/hair/g, "mane"); newtext = newtext.replace(/([\.\/-])?mturk/g, function($0,$1){ return $1?$0:"equestria";}); newtext = newtext.replace(/tj(ol)*o?/ig, "The Sexy Pony Overlord"); item.html(newtext); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址