Disable page close confirmation

Disable page close confirmation (onBeforeUnload)

Pada tanggal 17 Agustus 2014. Lihat %(latest_version_link).

// ==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;
});