Infinity新标签页图标名称/背景色适配DarkReader

让Infinity新标签页图标名称和背景色适配DarkReader

目前为 2023-01-06 提交的版本。查看 最新版本

// ==UserScript==
// @name         Infinity新标签页图标名称/背景色适配DarkReader
// @namespace    https://github.com/iMortRex
// @version      0.0.4
// @description  让Infinity新标签页图标名称和背景色适配DarkReader
// @author       Mort Rex
// @run-at       document-start
// @match        https://inftab.com/
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function () {
    'use strict';

    if (window.getComputedStyle(document.getElementsByTagName('html')[0], null)['color-scheme'] == 'dark') {
        GM_addStyle('body {--icon-font-color: var(--darkreader-neutral-text) ! important}');
        document.getElementsByClassName('wallpaper-mask')[0].style.cssText += 'background-color: #242424 ! important;';
    }
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址