// ==UserScript== // @name 萌娘百科:移除背景廣告 // @namespace https://jasonhk.dev/ // @version 1.0.0 // @description 移除萌娘百科「MoeSkin」外觀的背景廣告圖片。 // @author Jason Kwok // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.zh.moegirl.org.cn/* // @downloadURL none // ==/UserScript== (function() { let css = ` body.skin-moeskin #moe-global-background { --theme-background-color: rgb(185 214 244); } @media(prefers-color-scheme: dark) { body.skin-moeskin #moe-global-background { --theme-background-color: rgb(47, 51, 53); } } body.skin-moeskin #moe-global-background::before, body.skin-moeskin #moe-global-background::after { background: var(--theme-background-color) !important; } `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();