Pandabutt

Is this what my life has become?

目前为 2015-04-08 提交的版本。查看 最新版本

// ==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);
});