You are viewing a single comment's thread from:

RE: [Steemit CountDown] - 🕐 Easily Monitor Elapsed Times of Posts

in #steem8 years ago (edited)

Here you go, with a built in alert at 30 minutes:

javascript:(function(){window.status.length||(window.setTimeout(function(){alert("Go vote on "+document.title+"!")},1000*60*(30-parseInt(document.getElementsByTagName("time")[0].innerHTML))),window.status="",setInterval(function(){document.getElementsByClassName("Post").length?(window.status.length||(window.status=document.title),document.title="["+document.getElementsByTagName("time")[0].innerHTML+"] - "+window.status):window.status=""},500));})();

The unminified code:


javascript: (function() {
    if (!window.status.length) {
        window.setTimeout(function() {
            alert("Go vote on " + document.title + "!");
        }, 1000 * 60 * (30 - parseInt(document.getElementsByTagName("time")[0].innerHTML)));
        window.status = "";
        setInterval(function() {
            if (document.getElementsByClassName("Post").length) {
                if (!window.status.length) window.status = document.title;
                document.title = "[" + document.getElementsByTagName("time")[0].innerHTML + "] - " + window.status;
            } else window.status = "";
        }, 500);
    }
})();

If you want to get in earlier than 30 minutes, just change the 30 in there to something else like 28, 25, etc.

Sort:  

Hey, I know I am little late buuuut ... I would really appreciate if someone can update this code! :)

Coin Marketplace

STEEM 0.27
TRX 0.13
JST 0.032
BTC 62683.02
ETH 2962.44
USDT 1.00
SBD 3.64