虎牙登录屏蔽器V1

屏幕HUAYA的登录,让你安心,专注看片儿!!

// ==UserScript==
// @name         虎牙登录屏蔽器V1
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  屏幕HUAYA的登录,让你安心,专注看片儿!!
// @author       Limk
// @match        https://www.huya.com/*
// @license 
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    setInterval(findLoginWin,2000);//2秒检测一次,发现删除
    function findLoginWin(){
        let node = document.getElementById("UDBSdkLgn");
        console.log("UDBSdkLgn node =",node);
        if(node != null && node != undefined){
            console.log("UDBSdkLgn remove");
            node.style.display="none";
        }
    }
})();