Chrome devtools extension console
问题 I included this in my chrome extension manifest "devtools_page": "devtools.html" And in devtools.html I include a devtools.js file which creates a panel chrome.devtools.panels.create("Panel", "icon.png", "panel.html", function(panel){}); The panel is indeed created. And in panel.html I include a panel.js file in which I added a listener chrome.devtools.network.onRequestFinished.addListener(function(details){ console.log(details); }); But where can I see the console output of the panel? Or how