__ERR0R__ / UploadX File List Color Fix

// ==UserScript==
// @name        UploadX File List Color Fix
// @description This script changes the file list text color to a more readable color(black).
// @namespace   https://openuserjs.org
// @include     http://uploadx.org/*
// @version     3
// @grant       none
// @author __ERR0R__
// ==/UserScript==
var links = document.getElementById("files_list");
var a = links.getElementsByTagName("a");
var thisLocationHref = window.location.href;
for (var i = 0; i < a.length; i++) {

    var tempLink = a[i];

    if (thisLocationHref === tempLink.href) {
        tempLink.style.color = "black";
    } else {
        tempLink.style.color = "black";
    }
}
var links = document.getElementById("folders_list");
var a = links.getElementsByTagName("a");
var thisLocationHref = window.location.href;
for (var i = 0; i < a.length; i++) {

    var tempLink = a[i];

    if (thisLocationHref === tempLink.href) {
        tempLink.style.color = "black";
    } else {
        tempLink.style.color = "black";
    }
}