Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@weizman
Created September 1, 2021 05:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save weizman/1e86a6f44a85e85cc698651d50a32acc to your computer and use it in GitHub Desktop.
Save weizman/1e86a6f44a85e85cc698651d50a32acc to your computer and use it in GitHub Desktop.
(function xyz(){
let div = document.createElement('div');
let loop = setInterval(() => {
console.log(div);
console.clear();
});
Object.defineProperty(div, "id", {get: () => {
clearInterval(loop);
alert("Dev Tools detected!");
return 'SOME_FAKE_ID';
}});
}())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment