2022/12/1 上午9:45:44
// ==UserScript==
// @name 去除微博灰色遮罩
// @namespace removeGray-weibo.com
// @match https://weibo.com/
// @grant none
// @version 1.0
// @author 秋刀鱼Bin
// @description 2022/12/1 上午9:45:44
// ==/UserScript==
setTimeout(()=>{
[].forEach.call(document.querySelectorAll(".grayTheme"), function(item){
item.classList.remove('grayTheme');
})
},2000)