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?

link|improve this question
Thanks for the answer accept, it's a pleasure... – ChristopheCVB Jul 23 '11 at 16:48
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? – SynapticUnderrun May 11 at 13:38
feedback

3 Answers

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.

link|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
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 at 17:35
@Rob W, Didn't notice chrome.devtools.* APIs have become outside of experiment APIs. – Derek Mar 14 at 1:26
feedback

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

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

link|improve this answer
feedback

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/

link|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
feedback

Your Answer

 
or
required, but never shown

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