您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
此脚本适用于难以关注彩色图标的人,它用 NixOS 主题颜色替换图标。
// ==UserScript== // @name Replace NixOS colorful Logo // @name:zh-CN 替换 NixOS 多彩图标 // @namespace http://tampermonkey.net/ // @match https://search.nixos.org/* // @grant none // @description This script is for people who have trouble focusing on colorful icons, it replaces the icons with the NixOS theme color. // @description:zh-CN 此脚本适用于难以关注彩色图标的人,它用 NixOS 主题颜色替换图标。 // @version 0.0.2 // ==/UserScript== (function() { 'use strict'; document.addEventListener('DOMContentLoaded', function() { const images = document.querySelectorAll('img'); images.forEach(img => { if (img.src.includes('/images/nix-logo-pride.png')) { img.src = img.src.replace('/images/nix-logo-pride.png', '/images/nix-logo.png'); } }); }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址