Disable page close confirmation

Disable page close confirmation (onBeforeUnload)

目前為 2014-08-17 提交的版本,檢視 最新版本

// ==UserScript==
// @name Disable page close confirmation
// @description Disable page close confirmation (onBeforeUnload)
// @namespace http://nags.must.die
// @include http://grooveshark.com/*
// @version 1.0
// ==/UserScript==

window.addEventListener('beforeunload', function(e) {
  window.onbeforeunload = null;
  window.onunload = null;
});