try to take over the world!
// ==UserScript==
// @name 屏蔽百度云
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author SONES117
// @include https://www.baidu.com/
// @include https://www.baidu.com/*
// @match http://*/*
// @grant none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
console.log("test");
document.getElementById('lg').style.opacity=0;
document.getElementById('lg').style.pointerEvents="none"
})();