Close Tamper Monkey update window
当前为
// ==UserScript==
// @name Disable TamperMonkey Update Tab
// @namespace org.jixun.tamper.no.window
// @version 1.0
// @description Close Tamper Monkey update window
// @author Jixun
// @match http://tampermonkey.net/changelog.*
// @grant unsafeWindow
// ==/UserScript==
if (history.length == 1 && !document.referrer) {
unsafeWindow.close ();
}