// ==UserScript== // @name 替换zi.tools的Logo为2024新年Logo // @namespace http://tampermonkey.net/ // @version 0.1 // @description Replace the zi.tools logo with the 2024 New Year logo // @author SkyEye_FAST // @match *://zi.tools/* // @license Apache-2.0 // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.addEventListener('load', function() { const images = document.querySelectorAll('img'); images.forEach(img => { if (img.src === 'https://ziphoenicia-1300189285.cos.ap-shanghai.myqcloud.com/home_svg/zi2025.svg' || img.src === 'https://ziphoenicia-1300189285.cos.ap-shanghai.myqcloud.com/home_svg/zi-tools.svg') { img.src = 'https://ziphoenicia-1300189285.cos.ap-shanghai.myqcloud.com/home_svg/zi-tools-spring.svg'; img.style.transform = 'rotate(180deg)'; } }); }); })();