Skip to content

Instantly share code, notes, and snippets.

@subtleGradient
Last active November 18, 2020 17:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save subtleGradient/b3b00beb75eb06c4a002b10fb11c1e9c to your computer and use it in GitHub Desktop.
Save subtleGradient/b3b00beb75eb06c4a002b10fb11c1e9c to your computer and use it in GitHub Desktop.
Ignore ESC macOS
// ==UserScript==
// @name Keep Full Screen
// @namespace http://superuser.com/q/315949
// @description Prevents Escape key from leaving full screen.
// @include http://*
// @include https://*
// ==/UserScript==
document.documentElement.onkeydown = (event) => {
if (event.keyCode == 27) event.preventDefault();
console.log("Keep Full Screen");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment