Respec Remover

removes respec button

目前为 2020-07-01 提交的版本。查看 最新版本

// ==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() {
    let button = document.getElementById('talentRespecBtn');
    if (button) {
        button.remove();
    } else {
        setTimeout(init, 60000);
    }
})();