From ea6586c41a12ab4b055a7574f6e3e52e4de2e728 Mon Sep 17 00:00:00 2001 From: ClanEver <562211524@qq.com> Date: Tue, 28 Oct 2025 11:24:08 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=20Outline=E8=83=8C=E6=99=AF?= =?UTF-8?q?=E9=A2=9C=E8=89=B2=E4=BF=AE=E6=94=B9.user.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Outline背景颜色修改.user.js | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Outline背景颜色修改.user.js b/Outline背景颜色修改.user.js index bc68f0e..5c103ae 100644 --- a/Outline背景颜色修改.user.js +++ b/Outline背景颜色修改.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Outline背景颜色修改 // @namespace http://tampermonkey.net/ -// @version 2025-10-27 +// @version 2025-10-28 // @description // @author ClanEver // @match https://outline.eimsound.com/* @@ -21,13 +21,19 @@ '.heading-actions', // h1, h2, ...前的# 'body', '.keGgMX', // header - '.kiKzFH', // 内容页 body + + // 内容页 body + '.kiKzFH', + '.jDTqnc', + '.kiKzFH', + '.fwyrwy', // 内容页 标题 '.cLXGaH', // 内容页 大纲 '.jxgRW', // 主页 body '.jHHYkE', // 主页 tab '.kbOwGd', // 主页 list '.eZQAiy', // 子页面 list + '.gUQTOB', // 子页面 list ] const need_change_css_str = need_change_css_selector.join(',') const DEFAULT_COLOR = '#f7f8fa'; @@ -56,4 +62,8 @@ } `; document.documentElement.appendChild(style); + + setInterval(function() { + document.body.style.setProperty("background", "#f7f8fa", "important"); + }, 500); })();