Last active
May 17, 2024 11:12
-
-
Save AmigoDheena/18eed7b009f2178eeac2aab8ec49ff6b to your computer and use it in GitHub Desktop.
OFF inspections
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*----------------------------------- | |
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