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?
|
|
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;
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 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, |
|||||||||||
|
|
Unfortunately, There is no way to do that... The chrome://chromewebdata link only works if an instance of dev tools is already opened... |
|||
|
|
|
Yes you can (or not) using the experimental APIs |
|||||||||
|
