// ==UserScript== // @name Infinity新标签页图标名称/背景色适配DarkReader // @namespace https://github.com/iMortRex // @version 0.0.2 // @description 让Infinity新标签页图标名称和背景色适配DarkReader // @author Mort Rex // @run-at document-start // @match https://inftab.com/ // @grant GM_addStyle // @license MIT // @downloadURL none // ==/UserScript== (function () { 'use strict'; if (document.getElementsByTagName('html')[0].getAttribute('data-darkreader-scheme') == "dark") { GM_addStyle('body {--icon-font-color: var(--darkreader-neutral-text) ! important}'); document.getElementsByClassName('wallpaper-mask')[0].style.cssText += 'background-color: #242424 ! important;'; } })();