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??
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
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. |
|||
|
|
|
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). |
|||
|
|