Greasy Fork

Greasy Fork is available in English.

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

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

当前为 2023-01-14 提交的版本,查看 最新版本

// ==UserScript==
// @name         Infinity新标签页图标名称/背景色适配DarkReader
// @namespace    https://github.com/iMortRex
// @version      0.0.5
// @description  让Infinity新标签页图标名称和背景色适配DarkReader
// @author       Mort Rex
// @run-at       document-idle
// @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;';
    }
})();