Greasy Fork

Greasy Fork is available in English.

替换zi.tools的Logo为2024新年Logo

Replace the zi.tools logo with the 2024 New Year logo

当前为 2025-01-28 提交的版本,查看 最新版本

// ==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
// ==/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)';
            }
        });
    });
})();