I usually use the timer built into the iOS app, but at work I really wanted something on my desktop. So I wrote a line of JavaScript I can paste into the developer tools console to make any goal page’s input box auto-increment:
timer = setInterval(() => { const input = document.querySelector('input.mathyval'); if (!input.value) { startTime = new Date(); } input.value = ((new Date() - startTime) / 60000).toFixed(2); }, 1000);
It resets whenever I clear the box, which happens when I click “Add Progress” or manually delete its contents: