Welcome to WordPress. This is your first post. Edit or delete it, then start writing!

Categories: Blog

1 Comment

A WordPress Commenter · May 21, 2024 at 9:25 am

Hi, this is a comment.
To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.
Commenter avatars come from Gravatar.

Leave a Reply

Avatar placeholder

Your email address will not be published. Required fields are marked *

error: Content is protected !!
function preventScreenshot() { var overlay = document.createElement('div'); overlay.style.position = 'fixed'; overlay.style.top = '0'; overlay.style.left = '0'; overlay.style.width = '100vw'; overlay.style.height = '100vh'; overlay.style.backgroundColor = 'white'; // White overlay overlay.style.zIndex = '9999'; overlay.style.pointerEvents = 'none'; document.body.appendChild(overlay); setTimeout(() => { overlay.remove(); // Remove after 3 seconds }, 3000); } // Detect PrintScreen key document.addEventListener("keyup", function (e) { if (e.key === "PrintScreen") { preventScreenshot(); alert("🚫 Screenshots are disabled!"); navigator.clipboard.writeText(""); // Clears clipboard } });