Pandabutt

Is this what my life has become?

  1. // ==UserScript==
  2. // @name Pandabutt
  3. // @version 0.10
  4. // @description Is this what my life has become?
  5. // @author Tjololo
  6. // @match http://mturkforum.com/*
  7. // @match http://www.mturkgrind.com/*
  8. // @require http://code.jquery.com/jquery-git.js
  9. // @namespace https://gf.qytechs.cn/users/710
  10. // ==/UserScript==
  11.  
  12. $("div.postbody").each(function() { replaceText($(this)); });
  13.  
  14. $("div.messageContent").each(function() { replaceText($(this)); });
  15.  
  16. function replaceText(item) {
  17. var oldtext = item.html();
  18. var newtext = oldtext.replace(/(images\/)?butt/g, function($0,$1){ return $1?$0:"PLACEHOLDER";});
  19. newtext = newtext.replace(/panda/g, "butt");
  20. newtext = newtext.replace(/PLACEHOLDERon/g, "button");
  21. newtext = newtext.replace(/PLACEHOLDER/g, "panda");
  22. newtext = newtext.replace(/body/g, "pony");
  23. newtext = newtext.replace(/people/g, "ponies");
  24. newtext = newtext.replace(/person/g, "pony");
  25. newtext = newtext.replace(/hands/g, "hooves");
  26. newtext = newtext.replace(/hand/g, "hoof");
  27. newtext = newtext.replace(/foot/g, "hoof");
  28. newtext = newtext.replace(/feet/g, "hooves");
  29. newtext = newtext.replace(/hair/g, "mane");
  30. newtext = newtext.replace(/([\.\/-])?mturk/g, function($0,$1){ return $1?$0:"equestria";});
  31. newtext = newtext.replace(/tj(ol)*o?/ig, "The Sexy Pony Overlord");
  32. item.html(newtext);
  33. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址