Say I have this:
chrome.tabs.create({}, function(tab){
});
I am looking at the options for the first argument - https://developer.chrome.com/extensions/tabs#method-create
there doesn't seem to be an option to have DevTools open automatically, but I am wondering if there is not a method on the tab, to open DevTools, something like this:
chrome.tabs.create({}, function(tab){
tab.openDevTools();
});
is this possible somehow?