/* RushPlayGames — protect.js Basic, best-effort deterrents against casual right-click / view-source / devtools shortcuts. This does NOT make the code unreadable or block screenshots — see the chat explanation for why that isn't possible on the web. It only removes the easy, one-click paths. */ (function(){ "use strict"; document.addEventListener("contextmenu", function(e){ e.preventDefault(); }); document.addEventListener("keydown", function(e){ var k = e.key; var blocked = k === "F12" || (e.ctrlKey && e.shiftKey && (k === "I" || k === "i" || k === "J" || k === "j" || k === "C" || k === "c")) || (e.metaKey && e.altKey && (k === "I" || k === "i" || k === "J" || k === "j")) || (e.ctrlKey && (k === "U" || k === "u" || k === "S" || k === "s")); if(blocked){ e.preventDefault(); } }); document.addEventListener("dragstart", function(e){ if(e.target && e.target.tagName === "IMG") e.preventDefault(); }); })();