Is this what my life has become?
目前為
// ==UserScript==
// @name Pandabutt
// @version 0.7
// @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://greasyfork.org/users/710
// ==/UserScript==
$("div.postbody").each(function() {
var oldtext = $(this).html();
var newtext = oldtext.replace(/(images\/)?butt/g, function($0,$1){ return $1?$0:"PLACEHOLDER";});
newtext = newtext.replace(/panda/g, "butt");
newtext = newtext.replace(/PLACEHOLDER/g, "panda");
newtext = newtext.replace(/body/g, "pony");
newtext = newtext.replace(/people/g, "ponies");
newtext = newtext.replace(/person\s/g, "pony");
newtext = newtext.replace(/hand[^s]/g, "hoof");
newtext = newtext.replace(/hands/g, "hooves");
newtext = newtext.replace(/foot/g, "hoof");
newtext = newtext.replace(/feet/g, "hooves");
newtext = newtext.replace(/hair/g, "mane");
newtext = newtext.replace(/\bmturk\b/g, "equestria");
newtext = newtext.replace(/tj(ol)*o?/ig, "The Sexy Pony Overlord");
$(this).html(newtext);
});
$("div.messageContent").each(function() {
var oldtext = $(this).html();
var newtext = oldtext.replace(/(images\/)?butt/g, function($0,$1){ return $1?$0:"PLACEHOLDER";});
newtext = newtext.replace(/panda/g, "butt");
newtext = newtext.replace(/PLACEHOLDER/g, "panda");
newtext = newtext.replace(/body/g, "pony");
newtext = newtext.replace(/people/g, "ponies");
newtext = newtext.replace(/person\s/g, "pony");
newtext = newtext.replace(/hand[^s]/g, "hoof");
newtext = newtext.replace(/hands/g, "hooves");
newtext = newtext.replace(/foot/g, "hoof");
newtext = newtext.replace(/feet/g, "hooves");
newtext = newtext.replace(/hair/g, "mane");
newtext = newtext.replace(/\bmturk\b/g, "equestria");
newtext = newtext.replace(/tj(ol)*o?/ig, "The Sexy Pony Overlord");
$(this).html(newtext);
});