How to do it in this code so that the timer is shown but the name itself does not disappear
tabs, can I do something like this?
// ==UserScript== // @include * // ==/UserScript== start=(new Date()).getTime(); window.setInterval(function(){ document.title=Math.floor(((new Date()).getTime()-start)/1000); }, 340);