gateHelper

hack gate!

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         gateHelper
// @namespace    http://tampermonkey.net/
// @version      0.6
// @license Amos
// @description  hack gate!
// @author       Amos
// @match        https://www.gate.io/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
/* globals jQuery, $, waitForKeyElements */

    let intervalId = setInterval(()=>{
        let el=document.querySelector('#noty_bottomLeft_layout_container')
        if(el){
            el.style.display='none'
        }
    },1000)