How to insert HTML/JS into window (of type “panel”) created by chrome.windows.create?
问题 I'm creating a window in a Chrome Extension using chrome.windows.create . It's of type panel , so it's not a regular browser window or tab, but a free-standing window floating above all others. Having created it, I now need to insert some HTML and JavaScript into it. So how is that done? There's a Window Object returned from create, but it has no useful hooks in it - just a few attributes. Nothing in the documentation suggests how to do that, and I don't see and DOM tree fo it anywhere. Any