I am using this little script to find out whether Firebug is open:

if (window.console && window.console.firebug) {
    //is open
};

And it works well. Now I was searching for half an hour to find a way to detect whether Google Chrome's built-in web developer console is open, but I couldn't find any hint.

This:

if (window.console && window.console.chrome) {
    //is open
};

doesn't work.

EDIT:

So it seems that it is not possible to detect whether the Chrome console is open. But there is a "hack" that works, with some drawbacks:

  • will not work when console is undocked
  • will not work when console is open on page load

So, I am gonna choose Unsigned´s answer for now, but if some1 comes up with a brilliant idea, he is welcome to still answer and I change the selected answer! Thanks!

link|improve this question

possible duplicate of How to detect Chrome Inspect Element is running or not? – pimvdb Oct 17 '11 at 20:09
The solution in the answer seems to work, however only if the console is docked. Also it doesn't work if the console is already open on page load, while the Firebug script does not have this problems and seems to always work. But I can live with that for now! Thanks a lot @pimvdb!! I will keep the question open anyways to maybe find a way similar to the Firebug script, that always works. – Andrej Oct 17 '11 at 20:16
I've been trying things like throwing an error and see whether .message is fetched (which happens when the debugger is open because you see the message), but unfortunately this also happens when the debugger is not opened. I'd like to know a hack for this if it exists... – pimvdb Oct 18 '11 at 15:07
The question is why do you need to do this? If you're trying to prevent debugging, there are other debugging tools which can be used instead. – Spudley Oct 18 '11 at 15:07
1  
@Spudley It is not relevant to the question why I need it and I dont want to start explaining. I do know there is no way to prevent some1 from debugging, but thats not what I am trying to do. I am just trying to figure out a way to know if the console is open or not. Thats all :) – Andrej Oct 18 '11 at 15:24
feedback

2 Answers

up vote 6 down vote accepted

The docked inspector can be detected (albeit in a slightly 'hacky' way), as per this answer. However, this only works if the inspector is opened after the page finishes loading. If it is opened prior to loading the page, you will not be able to detect it's presence this way.

You may also get false positives when working with certain frame setups.

The bottom line is that there is no documented way to reliably detect the inspector, and no way at all to detect it when undocked. This is most likely due to security concerns. A malicious webpage could conceal its payload when the inspector was open, making it more difficult to debug.

link|improve this answer
I presume you meant for "this answer" to be a link? – Thor84no Oct 18 '11 at 15:12
@Thor84no: Oops, yes :) – Unsigned Oct 18 '11 at 15:24
To Unsigned: are you absolutely sure there is no way to detect it? but what about detecting it when its docked BUT open on page load(the "hacky" way doesnt work there too)? – Andrej Oct 18 '11 at 15:27
@Andrej: You are correct, I was actually just testing that myself before posting it. If the inspector is already open on page load, that script will not be able to detect it. You may also get false positives when working with certain framesets. – Unsigned Oct 18 '11 at 15:28
@Unsigned: Alright, I will keep the question open just in case some1 comes up with something amazingly brilliant :) Otherwise I am gonna mark your answer tomorrow. I hope thats fine with you :) – Andrej Oct 18 '11 at 15:41
show 1 more comment
feedback

The Chrome developer tools is really just a part of WebKit's WebCore library. So this question applies to Safari, Chrome, and any other WebCore consumers.

If a solution exists, it'll be based off a difference in the DOM when the WebKit web inspector is open and when it's closed. Unfortunately, this is a kind of a chicken and egg problem because we can't use the inspector to observe the DOM when the inspector is closed.

What you may be able to do is write a bit of JavaScript to dump the entire DOM tree. Then run it once when the inspector is open, and once when the inspector is closed. Any difference in the DOM is probably a side-effect of the web inspector, and we may be able to use it to test if the user is inspecting or not.

This link is a good start for a DOM dumping script (http://www.lemoda.net/javascript/dump-dom/dump-dom.html), but you'll want to dump the entire DOMWindow object, not just document.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.