Reddit timestring highlight

Highlight recent time strings on reddit

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        Reddit timestring highlight
// @description Highlight recent time strings on reddit
// @namespace   8cccc9 + kmc
// @include     *reddit.com/r/*
// @version     1
// @grant       none
// ==/UserScript==
var elements = document.getElementsByClassName("live-timestamp");
for(var i = 0; i < elements.length; i++){
    elements[i].style.fontWeight = "bold";
    var time = elements[i].innerHTML;
    if(time.match(/just now/g)){
        elements[i].style.color = "lime";
    } else if(time.match(/\d+ minute/g)){
    	elements[i].style.color = "green";
    } else if(time.match(/1 hour/g)){
    	elements[i].style.color = "teal";
    } else if(time.match(/2 hour/g)){
    	elements[i].style.color = "cornflowerblue";
    } else if(time.match(/3 hour/g)){
    	elements[i].style.color = "mediumblue";
    } else if(time.match(/4 hour/g)){
    	elements[i].style.color = "indigo";
    }
}