Open a new tab or periodically refresh a tab you have open? The latter would be less problematic. Here's a userscript for that:
// ==UserScript== // @name Periodically refresh page(s) // @match http://YOUR_SERVER.COM/YOUR_PATH/* // ==/UserScript== var days = 0; var hours = 1; var minutes = 44; var seconds = 17; setTimeout ( function () { location.reload (); }, ( ( (days * 24 + hours) * 60 + minutes) * 60 + seconds) * 1000 );
If you really want to open new tab(s), that would be:
// ==UserScript== // @name Periodically open new tabs or windows // @match http://YOUR_SERVER.COM/YOUR_PATH/* // ==/UserScript== var days = 0; var hours = 1; var minutes = 44; var seconds = 17; var url = "Some URL"; //--- WARNING: will not work without changing Chrome settings and extensions. setTimeout ( function () { window.open (url, '_blank'); }, ( ( (days * 24 + hours) * 60 + minutes) * 60 + seconds) * 1000 );
BUT,
You will also need to set the browser's pop-up blocker settings to allow it.
You will also probably have to install an extension like One Window.