Skip to content

Instantly share code, notes, and snippets.

@AmigoDheena
Last active May 17, 2024 11:12
Show Gist options
  • Save AmigoDheena/18eed7b009f2178eeac2aab8ec49ff6b to your computer and use it in GitHub Desktop.
Save AmigoDheena/18eed7b009f2178eeac2aab8ec49ff6b to your computer and use it in GitHub Desktop.
OFF inspections
/*-----------------------------------
OFF inspections
-----------------------------------*/
document.addEventListener("contextmenu", (event) => event.preventDefault());
document.onkeydown = function (e) {
if (event.keyCode == 123) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == "I".charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.shiftKey && e.keyCode == "J".charCodeAt(0)) {
return false;
}
if (e.ctrlKey && e.keyCode == "U".charCodeAt(0)) {
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment