// ==UserScript== // @name 文兴一言去码工具 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 文兴一言去除页面马赛克工具 // @author kj // @match https://yiyan.baidu.com/** // @icon https://www.google.com/s2/favicons?sz=64&domain=yiyan.baidu.com // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerHTML = '#eb-watermark{visibility:hidden!important;opacity:0;}'; document.body.appendChild(style) })();