Would it be possible to set user agent on popup windows? ``` nw.Window.open('about:blank', {}, (win) => { win.setUserAgentOverride('My custom user agent for this window which differs from parent'); }) ``` Perhaps there is some way to achieve this already?