Hi is it possible to create new tab in devtools mode using chrome api?
I want to create extension that open multiple tabs all in devtools mode.
chrome.tabs.create({
url: newUrl,
windowType: "devtools"});
Obviously property windowType does not work it is just to ilustrate.