// ==UserScript== // @name Reload page // @namespace support.epfl.ch // @version 0.1 // @description Reload the page https://support.epfl.ch/epfl?id=epfl_services_status every 5 min. // @author Clément chen // @match https://support.epfl.ch/epfl?id=epfl_services_status // @match https://support.epfl.ch/epfl/ // @grant none // ==/UserScript== (function() { 'use strict'; setTimeout(function(){ location.reload(); }, 5*60*1000); })();