I'm running a javascript snippet in Google Chrome to open a new window. The command used is just:
win = window.open(Url);
I would like to get Chrome open it in background. I've tried win.blur(), window.focus() and also '_blank', but all with no luck. I know it's possible to do it (the extension Distill Web Monitor does it). Anyone knows how to replicate it? Thanks!