Greasy Fork

Greasy Fork is available in English.

文兴一言去码工具

文兴一言去除页面马赛克工具

当前为 2023-03-20 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';
    var style = document.createElement('style');
    style.innerHTML = '#eb-watermark{visibility:hidden!important;opacity:0;}';
    document.body.appendChild(style)
})();