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