Skip to content

Instantly share code, notes, and snippets.

@gogromat
Last active May 4, 2024 20:58
Show Gist options
  • Save gogromat/5a989c1f140726bbb85393e4cb4a08a8 to your computer and use it in GitHub Desktop.
Save gogromat/5a989c1f140726bbb85393e4cb4a08a8 to your computer and use it in GitHub Desktop.
disable-suroi-io-console
document.addEventListener("keydown", (e) => {
const code = Number.parseInt(e.keyCode, 10);
// console.log(`keyCode: ${code}`);
if (code === 192) {
e.preventDefault();
e.stopPropagation();
// console.log(`stopped ~`);
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment