NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Humanatic Contador
// @version 1.0
// @description Contador
// @author JoseAyala
// @updateURL https://openuserjs.org/meta/JoseAyala/Humanatic_Contador.meta.js
// @downloadURL https://openuserjs.org/install/JoseAyala/Humanatic_Contador.user.js
// @match https://www.humanatic.com/pages/review.cfm
// @match https://www.humanatic.com/pages/*
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==
/* jshint -W097 */
//'use strict';
timeTitle(0,document.title);
function timeTitle(time,title){
document.title = title + ": " + time;
setTimeout(function(){timeTitle(time+1,title);},1000);
}