Greasy Fork is available in English.
移除飞书文档、工作台水印
当前为
// ==UserScript==
// @name Remove lark watermark | 移除飞书网页水印
// @description 移除飞书文档、工作台水印
// @version 0.3.0
// @author lbb00
// @homepage https://github.com/lbb00/remove-feishu-watermark
// @match https://*.feishu.cn/*
// @match https://*.larksuite.com/*
// @run-at document-start
// @grant GM_addStyle
// @namespace http://greasyfork.icu/users/793340
// ==/UserScript==
// 飞书文档
GM_addStyle('.ssrWaterMark{opacity: 0;}')
GM_addStyle('div[style*="background-image"]:not([class]):not(:has(*)){opacity: 0;}')
// 工作台
GM_addStyle('#watermark-cache-container{opacity: 0;}')
GM_addStyle('body>div[style*="inset: 0px;"]:not(:has(*)){opacity: 0;}')
// fixed for https://github.com/lbb00/remove-feishu-watermark/issues/3
GM_addStyle('body>div[style*="position: fixed"]:not(:has(*)){opacity: 0;}')