No DisableDevTool

Break disable-devtool and devtools-detector while keeping the website working perfectly.

< Відгуки до No DisableDevTool

Question/comment

§
Опубліковано: 02.01.2025

Doesn't work for me with the js below

function devtoolIsOpening() {
    console.clear();
    let before = new Date().getTime();
    debugger;
    let after = new Date().getTime();
    if (after - before > 200) {
        document.write(" Dont open Developer Tools. ");
        window.location.replace("https://example.com");
    }
    setTimeout(devtoolIsOpening, 100);
}
devtoolIsOpening();

Опублікувати відповідь

Sign in to post a reply.