Skip to content

Instantly share code, notes, and snippets.

@atomer
Created December 26, 2015 17:55
Show Gist options
  • Save atomer/2de6b4bb34acc56a8090 to your computer and use it in GitHub Desktop.
Save atomer/2de6b4bb34acc56a8090 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name kancolle beforeunload
// @namespace http://tampermonkey.net/
// @version 0.1
// @description
// @author atomer
// @match http://www.dmm.com/netgame/social/-/gadgets/=/app_id=*
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
window.onbeforeunload = function() {
return "";
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment