Greasy Fork is available in English.

Respec Remover

removes respec button

2020/07/03のページです。最新版はこちら

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==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);
    }
})();