去除贴吧自动保存草稿功能
// ==UserScript== // @name Tieba No Draft // @description 去除贴吧自动保存草稿功能 // @author [email protected] // @include http://tieba.baidu.com/* // @version 1 // @grant none // @namespace https://greasyfork.org/users/1438 // ==/UserScript== var originFireEvent = UE.EventBase.prototype.fireEvent; UE.EventBase.prototype.fireEvent = function(){ if(arguments[0] === 'contentchange'){ return; } originFireEvent.apply(this, arguments); }