I'm having trouble creating a new window and adding content from my extension. Since I can't call window.open from my script without losing a reference to my new window, I'm forced to use chrome.windows.create.
Essentially what I want is this:
var newWindow = window.open();
newWindow.document.writeln( 'hello world' );
To create the equivalent in my chrome extension, i'm trying this:
chrome.windows.create({ type: 'popup' } , function(newWindow) {
newWindow.tabs[0].executeScript(null, { code: 'document.write("hello world");' })
});
The new window is created, however I can't seem to access the document object of the newly created window.