Last active
July 17, 2025 11:00
-
-
Save mkk360/c94249530e76b8404e4a2b055253ecfa to your computer and use it in GitHub Desktop.
Disabled Key
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
| /*----------- 00. Right Click Disable ----------*/ | |
| window.addEventListener('contextmenu', function (e) { | |
| // do something here... | |
| e.preventDefault(); | |
| }, false); | |
| /*----------- 00. Inspect Element Disable ----------*/ | |
| 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 == 'C'.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