Respec Remover

removes respec button

// ==UserScript==
// @name         Respec Remover
// @namespace    mailto:[email protected]
// @version      1.1
// @description  removes respec button
// @author       NooNoo
// @match        https://trimps.github.io/*
// @grant        none
// ==/UserScript==

(function init() {
    let button = document.getElementById('talentRespecBtn');
    if (button) {
        button.style.visibility = "hidden";
    } else {
        setTimeout(init, 60000);
    }
})();