I\'m making a Greasemonkey script and would like to open a new tab which will not display a URL but some HTML that is part of the script. So basically I want to do something lik
You can do this:
var newWindow = window.open();
and then do
newWindow.document.write("ohai");