Last active
February 26, 2020 08:23
-
-
Save kayode-adechinan/97c036a7d7f32409ba07ed1dc340e45a to your computer and use it in GitHub Desktop.
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
<script language="JavaScript"> | |
/** | |
* Disable right-click of mouse, F12 key, and save key combinations on page | |
* By Arthur Gareginyan ([email protected]) | |
* For full source code, visit https://mycyberuniverse.com | |
*/ | |
window.onload = function() { | |
document.addEventListener("contextmenu", function(e){ | |
e.preventDefault(); | |
}, false); | |
document.addEventListener("keydown", function(e) { | |
//document.onkeydown = function(e) { | |
// "I" key | |
if (e.ctrlKey && e.shiftKey && e.keyCode == 73) { | |
disabledEvent(e); | |
} | |
// "J" key | |
if (e.ctrlKey && e.shiftKey && e.keyCode == 74) { | |
disabledEvent(e); | |
} | |
// "S" key + macOS | |
if (e.keyCode == 83 && (navigator.platform.match("Mac") ? e.metaKey : e.ctrlKey)) { | |
disabledEvent(e); | |
} | |
// "U" key | |
if (e.ctrlKey && e.keyCode == 85) { | |
disabledEvent(e); | |
} | |
// "F12" key | |
if (event.keyCode == 123) { | |
disabledEvent(e); | |
} | |
}, false); | |
function disabledEvent(e){ | |
if (e.stopPropagation){ | |
e.stopPropagation(); | |
} else if (window.event){ | |
window.event.cancelBubble = true; | |
} | |
e.preventDefault(); | |
return false; | |
} | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment