Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a chrome extension which hooks into the devtools. Ideally I want a badge that, when clicked, opens up the devtools on the new tab which I created. Is there any way to do this from the background page?

share|improve this question
where you able to find an answer to the problem? – GeorgeU Aug 1 '11 at 15:04
This would still be really nice wouldn't it - any updates? – underrun May 11 '12 at 13:38
1  
Rob W. - you are mean ;) – ganoro Nov 18 '12 at 20:51
I've posted (and will be adding a bounty to) a related, but slightly different, question here: stackoverflow.com/questions/16660325/… – elliottcable May 21 at 0:32

3 Answers

This is a bit hacky but I think it's worth a try.

Once you've created a new tab inject the following content script in to that page;

(function () {
    var event = document.createEvent('KeyboardEvent');
    event.initKeyboardEvent(
        'keydown', // event type
        true, // can bubble
        true, // can be canceled
        window, // view
        'U+0049', // keyboard identifier for "I"
        KeyboardEvent.DOM_KEY_LOCATION_STANDARD, // standard location
        'Control Shift' // modifiers
    );
    if (!document.dispatchEvent(event)) {
        // Was canceled, you're screwed
        console.log('Canceled');
    } else {
        // Can you see the web inspector?
        console.log('Success');
    }
})();

This will attempt to fire the hotkey associated with the Developer tools menu item. Unfortunately, this isn't listed in Chrome's help section but you can see on your installation that it's Ctrl+Shift+I. You'll need to check if the user is on Mac and change the keys accordingly but that's not hard.

I'm not sure if this will work and I don't have time to test this right now but I'm very interested to see if it does.

It might also be useful to read more on event.initKeyboardEvent (and maybe even event.initKeyEvent) so you don't get thrown because I gave used a wrong argument in my quick mock up.

Good luck!

EDIT:

As @Derek pointed out, event.initKeyEvent is only supported by FireFox. However, event.initKeyboardEvent works with Chrome. I've updated the code even though it still doesn't work. It logs "Success" on the console but it doesn't trigger the web inspector display. I'm only updating this post as it may hopefully help others find a solution.

http://jsfiddle.net/alasdair/Lg2hT/

share|improve this answer
It gives me a "type error" said "undefined_method". – Derek 朕會功夫 Jul 29 '11 at 17:34
event.initKeyEvent is supported only by Firefox. help.dottoro.com/ljbwbehw.php – Derek 朕會功夫 Jul 29 '11 at 17:42
Ah well, it was worth a try. I suppose you could have a look at the jQuery Hotkeys plugin with the same concept in mind. – Alasdair Jul 29 '11 at 21:00
As @Derek has said, Chrome doesn't support event.initKeyEvent. However, it does support event.initKeyboardEvent so why doesn't the updated example trigger it? – Alasdair Aug 3 '11 at 12:14
Because this solution doesn't work, could you remove the answer? – Rob W Aug 1 '12 at 15:22
show 2 more comments

Unfortunately, There is no way to do that...

The chrome://chromewebdata link only works if an instance of dev tools is already opened...

share|improve this answer

Yes you can (or not) using the experimental APIs chrome.experimental.webInspector.
http://code.google.com/chrome/extensions/experimental.html
You can even change the content and panels of it.
Note that you will not able submit extensions that use experimental APIs.

share|improve this answer
However, it's worth noting that you can host these outside of the extensions gallery if you are determined. Although this would mean that users would also have to use the dev channel and enable the Experimental Extension APIs flag. – Alasdair Jul 28 '11 at 14:35
4  
experimental.webInspector is now called chrome.experimental.devtools. Some of the APIs are not experimental any more, and they are listed under chrome.devtools. Unfortunately, there is no way to automatically open the Dev tools via a Chrome extension. – Rob W Mar 13 '12 at 17:35
@Rob W, Didn't notice chrome.devtools.* APIs have become outside of experiment APIs. – Derek 朕會功夫 Mar 14 '12 at 1:26

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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