惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
博客园 - 司徒正美
L
LangChain Blog
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
月光博客
月光博客
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net

fishcpy的小破站

fishcpy的小破站 提醒大家注意用电用火安全 | fishcpy的小破站 新版本词幕使用体验 | fishcpy的小破站 词幕-墨.状态栏歌词替代品 | fishcpy的小破站 cloudflare tunnel优化 | fishcpy的小破站 使用napcat推送uptime kuma事件到QQ群或个人消息 | fishcpy的小破站 关于cloudflare分配.1 | fishcpy的小破站 给你的Fuwari加一个AI摘要 | fishcpy的小破站 新主题astro-theme-fishcpy | fishcpy的小破站 非人哉:限时玩家评价 | fishcpy的小破站 trae AI 编辑器SOLO模式貌似会注入广告 | fishcpy的小破站 给你的Fuwari加一个链接大卡片 | fishcpy的小破站 Uptime Kuma监控美化 | fishcpy的小破站 我名字的由来 | fishcpy的小破站 我的第一个图片API发布啦 | fishcpy的小破站 记一次和福瑞朋友去漫展 | fishcpy的小破站 腾讯EO加速cloudflare内网穿透 | fishcpy的小破站 江西研学 | fishcpy的小破站 可以屏蔽的测速ip | fishcpy的小破站 使用1panel搭建免费开源的icp虚拟备案系统 | fishcpy的小破站 25.5.3-5.4被攻击经过 | fishcpy的小破站 小米平板7pro澎湃os2Beta版使用体验 | fishcpy的小破站 音乐播放器预览 | fishcpy的小破站 爱国图片 | fishcpy的小破站 极域 | fishcpy的小破站 一班热榜历史记录2024-2025(下半学期) | fishcpy的小破站 启用cloudflare cdn后js无法正常加载解决办法 | fishcpy的小破站 给你的博客加上一个十年倒计时吧 | fishcpy的小破站 水-1 | fishcpy的小破站 在byrutgame上下载免费游戏 | fishcpy的小破站
哪吒监控 V1美化 | fishcpy的小破站
fishcpy, fishcpy@qq.com · 2025-06-07 · via fishcpy的小破站

如何部署

部署请看哪哪吒监控文档

美化

点这里预览效果

登录到后台,点击头像再点击系统设置,在里面找到自定义代码(样式和脚本) 插入下方代码

请根据自己情况修改

text
    /*  基础设置 */
    <script>
        window.CustomLogo = "https://cdn.fis.ink/img/2025/05/29/683836588877f.webp";  /*  自定义logo */
        window.ShowNetTransfer  = "true"; /* 卡片显示上下行流量 */
        window.DisableAnimatedMan  = "true";    /*  关掉动画人物插图 */
        window.CustomDesc ="人生漫长,不妨多解锁些鲜活体验"; /* 自定义描述 */
    </script>
    /* 以上鼠标特效 */
    <script>
    window.CustomBackgroundImage="https://cdn.fis.ink/img/2025/05/05/68182abdc7d6e.png"; /* 背景图 */
    </script>
    <script src="https://testingcf.jsdelivr.net/gh/mocchen/cssmeihua/js/aixin.js"></script>/* 点击爱心特效 */
    <script src="https://testingcf.jsdelivr.net/gh/mocchen/cssmeihua/js/yinghua.js"></script>  /* 页面樱花效果 */ 
    <span class="js-cursor-container"></span>
    <script src="https://testingcf.jsdelivr.net/gh/mocchen/cssmeihua/js/xiaoxingxing.js"></script>
    
    /* 更换卡通小人 */
    <script>
    var observer = new MutationObserver(function(mutationsList, observer) {
        var xpath = "/html/body/div/div/main/div[2]/section[1]/div[4]/div";
        var container = document.evaluate(xpath, document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
    
        if (container) {
            observer.disconnect();
            var existingImg = container.querySelector("img");
            if (existingImg) {
                container.removeChild(existingImg);
            }
            var imgElement = document.createElement("img");
            imgElement.src = "https://cdn.skyimg.de/up/2025/1/13/zera6q.webp";
            imgElement.style.position = "absolute";
            imgElement.style.right = "8px";
            imgElement.style.top = "-80px";
            imgElement.style.zIndex = "10";
            imgElement.style.width = "90px";
            container.appendChild(imgElement);
        }
    });
    var config = { childList: true, subtree: true };
    observer.observe(document.body, config);
    </script>

代码来自https://f5.pm/go-288695.html