赛尔号页面免刷新提示

去除赛尔号页面的刷新确认提示。

// ==UserScript==
// @name 赛尔号页面免刷新提示
// @match *://seer.61.com/
// @match *://seer.61.com/play.shtml
// @version 1.0.0
// @author  橙汁
// @copyright   橙汁
// @namespace http://tampermonkey.net/
// @homepageURL https://space.bilibili.com/293848435
// @supportURL  http://mail.qq.com/cgi-bin/qm_share?t=qm_mailme&email=973354623@qq.com
// @license     GNU General Public License version 2; https://opensource.org/licenses/GPL-2.0
// @description 去除赛尔号页面的刷新确认提示。
// @grant none
// ==/UserScript==

var t=setInterval("clearConfirmInitLocal()",3000);

clearConfirmInitLocal=function(){
  if (window.onbeforeunload==null)
    return;
  else
    {
      window.onbeforeunload=null;
      clearInterval(t);
    }
}