Skip to content

Instantly share code, notes, and snippets.

@pastak
Created May 17, 2019 07:26
Show Gist options
  • Save pastak/bf3a44880788937834a552aa12e4162f to your computer and use it in GitHub Desktop.
Save pastak/bf3a44880788937834a552aa12e4162f to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Prevent mistake close window
// @version 1
// @description prevent command/cttl + w
// @author pastak
// @match https://*.g.hatena.ne.jp/*/edit
// ==/UserScript==
(() => {
window.addEventListener('beforeunload', event => {
event.preventDefault();
event.returnValue = '';
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment