移除飞书网页水印 | Remove watermarks of lark

移除飞书文档、工作台水印

目前為 2023-04-26 提交的版本,檢視 最新版本

// ==UserScript==
// @name              移除飞书网页水印 | Remove watermarks of lark
// @description       移除飞书文档、工作台水印
// @name:zh-CN        移除飞书网页水印
// @description:zh-CN 移除飞书文档、工作台水印
// @name:en           Remove watermarks of lark
// @description:en    Remove watermarks from Lark documents and workspace.
// @version           0.5.0
// @license           The Unlicense
// @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 https://gf.qytechs.cn/users/793340
// ==/UserScript==

// global
GM_addStyle('[class*="watermark"]{opacity: 0;}')

// 飞书文档
GM_addStyle('.ssrWaterMark{opacity: 0;}')
GM_addStyle('body>div>div>div>div[style*="position: fixed"]: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;}') // for readonly

// 工作台
GM_addStyle('#watermark-cache-container{opacity: 0;}')
GM_addStyle('body>div[style*="inset: 0px;"]:not(:has(*)){opacity: 0;}')


QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址