Is this what my life has become?
当前为
// ==UserScript==
// @name Pandabutt
// @version 0.1
// @description Is this what my life has become?
// @author You
// @match http://mturkforum.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(/panda/g, "butt");
$(this).html(newtext);
});