如何检测WebKit Inspector?

发布于 2024-09-14 16:16:04 字数 134 浏览 10 评论 0 原文

我知道如何在 FF 中检测 Firebug (if (window.console && window.console.firebug)alert ('Buu'); ),但是如何检测或禁用 WebKit 中的 Web Inspector?

I know how to detect Firebug in FF (if (window.console && window.console.firebug) alert ('Buu'); ) but how detect or disable Web Inspector in WebKit??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

荒芜了季节 2024-09-21 16:16:04

我不建议尝试离开您的网站并进入用户的浏览器设置。如果您成功关闭 Web Inspector,用户会开始想知道为什么 Web Inspector 会自发死亡。

I don't recommend trying to reach out of your website and into the user's browser settings. If you succeed in turning off Web Inspector, users will start wondering why Web Inspector is spontaneously dying.

梦中楼上月下 2024-09-21 16:16:04

Web Inspector 注入的代码在 Chrome 受检查页面内的隔离世界中运行,因此无法从受检查页面的主世界中运行的代码中检测到它(例如,请参阅 http://www.opensource.apple.com/source/WebCore/WebCore-777.1/bindings/ v8/V8IsolatedContext.h)。

The Web Inspector injected code runs in an isolated world inside the inspected page for Chrome, so it cannot be detected from the code running in the inspected page's main world (see e.g. a class comment in http://www.opensource.apple.com/source/WebCore/WebCore-777.1/bindings/v8/V8IsolatedContext.h).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文