您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Google Docs Dark Mode - Paper
当前为
/* ==UserStyle== @name [Paper] Google Docs Dark Mode @version 1.4.0 @namespace theusaf.org @license MIT @description Google Docs Dark Mode - Paper @author theusaf ==/UserStyle== */ @-moz-document url-prefix("https://docs.google.com/document") { :root { --gray-50: #dddddd; --gray-100: #bdbdbd; --gray-150: #646464; --gray-200: #555555; --gray-300: #444444; --gray-400: #313131; --gray-500: #1C1C1C; --gray-600: #171717; --white-100: #f5f5f5; --white-200: #ededed; --white-300: #e3e3e3; } /* background/text */ .kix-appview-editor { background-color: var(--white-200) !important; filter: invert(1); } /* images */ .kix-lineview-text-block image { filter: invert(1); } /* grammarly support */ [data-grammarly-shadow-root="true"] { mix-blend-mode: normal !important; } }