removes respec button
当前为
// ==UserScript== // @name Respec Remover // @namespace mailto:[email protected] // @version 1 // @description removes respec button // @author NooNoo // @match https://trimps.github.io/* // @grant none // ==/UserScript== (function init() { var button = document.getElementById('talentRespecBtn'); if (button) { button.remove(); } else { setTimeout(init, 60000); } })();