[LZT] Remove Money Contest

Remove Money Contest On Lolz

目前為 2023-10-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name         [LZT] Remove Money Contest
// @namespace    [LZT] Remove Money Contest
// @version      0.1
// @description  Remove Money Contest On Lolz
// @author       el9in
// @license      el9in
// @match        https://zelenka.guru/threads/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=zelenka.guru
// @grant        GM_xmlhttpRequest
// ==/UserScript==

(function() {
    const isMoney = document.querySelector(".prefix.general.moneyContestWithValue");
    if(isMoney) {
        const stop = () => {
            if (document.readyState !== 'complete') {
                window.stop();
            }
        }
        setTimeout(stop, 2000);
    }
})();