NEMT Updated

Fixed New System

// ==UserScript==
// @name         NEMT Updated
// @namespace    http://conanluo.com/
// @version      v.1.0.2
// @description  Fixed New System
// @author       Conan
// @match        https://provider.nemtplatform.com/*
// @require      https://code.jquery.com/jquery-2.2.4.min.js
// @icon         https://www.google.com/s2/favicons?sz=64&domain=nemtplatform.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    function delay(time){
        return new Promise((res,rej)=>{
            setTimeout(_=>res(),time)
        })
    }
    let toastLeftBottom=setInterval(function(){
        if($(".toast-top-right").length!=0){
            $(".toast-top-right").removeClass("toast-top-right")//.addClass("toast-bottom-left")
            clearInterval(toastLeftBottom)
        }
    },1000)
    // Your code here...
})();