I am trying to open a debug window within Javascript. Javascript will pass the debug window a JSON string which JSONView (a Chrome extension) should display in a nicely formatted way. For this to work the MIME type must be "application/json". Is it possible to send the mime type and JSON string to window.open as a parameter some how? I think the MIME type and content has to be set on window.open otherwise JSONView won't get triggered.
I did try this, but it did not work:
var x = window.open("about:blank", 'x');
var doc = x.document;
doc.open("application/json");
doc.write($(".trend_chart").attr("data-trendChart"))
