CloseTabAsk

Don't close that tab!

当前为 2015-03-10 提交的版本,查看 最新版本

// ==UserScript==
// @        jawz
// @name       CloseTabAsk
// @version    1.0
// @description  Don't close that tab!
// @match      http://tinychat.com/turktime*
// @copyright  2012+, You
// @namespace https://greasyfork.org/users/1997
// ==/UserScript==

window.onbeforeunload = function(e) {
    return 'You sure you want to leave us? :(';
};