Greasy Fork is available in English.
文兴一言去除页面马赛克工具
当前为
// ==UserScript==
// @name 文兴一言去码工具
// @namespace http://tampermonkey.net/
// @version 0.2.2
// @description 文兴一言去除页面马赛克工具
// @author kj
// @match https://yiyan.baidu.com/**
// @icon https://www.google.com/s2/favicons?sz=64&domain=yiyan.baidu.com
// @grant none
// @run-at document-idle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var style = document.createElement('style');
var check = function(){
//var doms = Array.from(document.querySelectorAll('div')).filter(e=>!!/eb_\d+\.\d+/gi.exec(e.id));
var doms = Array.from(document.querySelectorAll('div')).filter(e=>e.style.pointerEvents == 'none'&&e.style.display == 'block'&&e.style.visibility != 'hidden');
if (doms.length>0){
doms[0].style.visibility = 'hidden';
doms[0].style.opacity = '0';
setTimeout(check, 1);
} else {
setTimeout(check, 1000);
}
}
check();
})();