// ==UserScript==
// @name 百度贴吧滑稽恢复
// @namespace URL Not Available
// @version 1.0
// @description 替换百度贴吧滑稽HashTag为正常表情
// @author AkanoLoki
// @match http://tieba.baidu.com/p/*
// @grant none
// @downloadURL none
// ==/UserScript==
(function () {
'use strict';
var tgt = '#滑稽go die#';
var rep = '
';
while(document.body.innerHTML.indexOf(tgt) > -1){
document.body.innerHTML = document.body.innerHTML.replace(tgt, rep);
}
})();