Erm... what are you doing?
Note that you could have gotten your answer a few minutes earlier, and wouldn't have needed to open DevTools. In fact, you could have simply enjoyed the website as intended!
You're probably trying to be curious by exploring the source code, as one would do in person or on the phone - and that's fine! But we're in 2025 and the web is neither. For most people, inspecting is much slower than simply enjoying the content. So, despite your best intentions, you're making the developer wait for you to snoop around their code, which is a productivity loss (and a bit annoying).
Why developers don't want you inspecting their sites:
- 🛠️
Developers have spent countless hours crafting this website, optimizing every pixel and line of code. When you inspect it, you're essentially looking through their hard work without permission.
- 🔒
Inspecting elements can be the first step in attempting to bypass security measures or find vulnerabilities. Even if that's not your intention, it raises red flags.
- ⚖️
The code, design patterns, and implementation details are intellectual property. Inspecting to copy or reverse-engineer is like photocopying a book without buying it.
- 🔍
Some people inspect to intercept network requests or find ways to access data they shouldn't. This can compromise user privacy and security for everyone.
The same goes for:
- "Hmm, I wonder how they did that"
- "Let me just check the CSS"
- "I'm just going to copy this bit of code"
- "Let's see if there are any vulnerabilities"
- etc.
Just enjoy the website! 😊
How to use this on your site
// Add this to your website
window.addEventListener('keydown', (e) => {
if (e.key === 'F12' || (e.ctrlKey && e.shiftKey && e.key === 'I')) {
e.preventDefault();
window.location.href = 'https://noinspect.top/en';
}
});
// Or detect DevTools opening
const detectDevTools = () => {
if (window.outerWidth - window.innerWidth > 160) {
window.location.href = 'https://noinspect.top/en';
}
}
window.addEventListener('resize', detectDevTools);