roger.vinas / SSTforLacies

// ==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"))
})();