// ==UserScript== // @name 文兴一言去码工具 // @namespace http://tampermonkey.net/ // @version 0.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 // @downloadURL none // ==/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)); if (doms.length>0){ doms[0].style.visibility = 'hidden'; doms[0].style.opacity = '0'; setTimeout(check, 1); } else { setTimeout(check, 1000); } } check(); })();