Trying to figure out how to automatically trigger the web developer tools by executing the "Ctrl + Shift + i" via my own extension. There is one stackoverflow question, but none of the answers worked.

link|improve this question

57% accept rate
feedback

3 Answers

It would be awesome, but unfortunately it is not possible with javascript.

link|improve this answer
is it possible with anything? Do I have to download chromium source code and mock with it? – GeorgeU Aug 2 '11 at 15:09
@GeorgeU I would guess it is possible with NPAPI plugins (C++), but it is not my area of expertise. code.google.com/chrome/extensions/dev/npapi.html – serg Aug 2 '11 at 15:17
feedback

You will have to use NPAPI plugins to do that.

link|improve this answer
feedback

An NPAPI plugin will not do what you want; NPAPI plugins don't deal with anything that is of the browser itself, only with the webpage they are placed in. They also can't be automatically loaded.

The best you could do with a NPAPI plugin would be to put it in a Chrome Extension and use it as part of something else; if Chrome Extensions don't natively allow you to capture hotkeys like that it might be possible to use C++ code and some sort of hook to catch the hotkey and pass it on to the browser as a , but it would be a very system specific and completely unsupported hack that you'd have to figure out for each OS that you want to support; there are no NPAPI browser APIs for this sort of thing.

For more information, see http://npapi.com/extensions

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.