KEYBOARD LETTER FUNCTIES BLOKKEREN <script language="javascript"> const disabledKeys = ["a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "-", "+"]; // keys that will be disabled const showAlert = e => { e.preventDefault(); // preventing its default behaviour return alert("PROTECTED BY REBELLION"); } document.addEventListener("contextmenu", e => { showAlert(e); // calling showAlert() function on mouse right click }); document.addEventListener("keydown", e => { // calling showAlert() function, if the pressed key matched to disabled keys if((e.ctrlKey && disabledKeys.includes(e.key)) || e.key === "F12") { showAlert(e); } }); </script> LINK VERMELDING MOUSEOVER BLOKKEREN <script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js'></script> <script id="rendered-js" > $(function () { $("a").each(function (index, element) { var href = $(this).attr("href"); $(this).attr("hiddenhref", href); $(this).removeAttr("href"); }); $("a").click(function () { url = $(this).attr("hiddenhref"); // window.open(url); window.location.href = url; }); }); //# sourceURL=pen.js </script> PAGINA COMPLEET BLURREN <style> body { -webkit-filter: blur(1px); } html, body, iframe { width:100%; height: 100%; border: 0; } </style>