function safeContentProtect() { // Disable text copy/cut document.addEventListener("copy", (e) => { if (!["input", "textarea"].includes(e.target.tagName.toLowerCase())) { e.preventDefault(); console.log("🚫 Copy blocked"); } }); document.addEventListener("cut", (e) => { if (!["input", "textarea"].includes(e.target.tagName.toLowerCase())) { e.preventDefault(); console.log("🚫 Cut blocked"); } }); // Disable right-click document.addEventListener("contextmenu", (e) => { e.preventDefault(); console.log("🚫 Right-click blocked"); }); // Disable text selection const style = document.createElement("style"); style.innerHTML = ` body { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } `; document.head.appendChild(style); } // Run the protection safeContentProtect();
top of page
Search
bottom of page