It is necessary to change the script so that the timer numbers are at the beginning of the tab, and not at the end.
// ==UserScript== // @include * // ==/UserScript== defTitle=document.title; startTime=new Date().getTime(); window.setInterval(function(){ document.title=defTitle+' - '+Math.round((new Date().getTime()-startTime)/1000); }, 1000);