NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name SSTforLacies
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Self Suficient "Lazy" Teams
// @author Roger ViƱas Alcon
// @match https://es-sst.adevinta.com/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
Array.from(document.getElementsByClassName("fa-star"))
.forEach(element => element.classList.replace("star-no", "star-si"))
})();