509
1
前言
- 为了替换chrome收藏夹而开发一个轻量级本地网址收藏夹,
- 无需数据库、无需服务器,也无需安装任何额外环境,下载后即可离线使用。
- 如需部署到公网,只需上传新的配置文件,或将admin.html发给ai改写一个适配的后台;
- 本项目追求简单、开箱即用,只需要一个html + 一个js文件即可运行.
预览
前台

后台

说明
- 本程序是一个基于 HTML 和 JavaScript 的简单链接管理工具,适合个人作为网址收藏夹使用。
- 使用方法非常简单,只需编辑当前目录下的
link-data.js文件,按照示例格式添加或修改链接数据即可。 - 后台数据存储在
link-data.js文件中,可直接运行admin.html进行可视化编辑,也可以使用文本编辑器直接修改。 - 数据格式为一个数组,每个元素是一个对象,包含
name(链接名称)、url(链接地址)、icon(链接图标 URL)、cat(链接分类)等属性。 - 链接分类
cat可以自定义,同一分类的链接会在主页面显示在一起,方便管理和访问。 - 主页
index.html会根据link-data.js中的数据动态生成链接列表,点击即可访问对应网站。 - 修改数据保存前请记得备份当前目录下的
link-data.js文件,以免数据丢失。 - 保存时请选择替换当前目录下的
link-data.js文件。 - 新建链接时建议最后选择分类信息。由于分类内容是动态显示的,选择分类后新建链接会自动跳转到对应分类下,并不会消失。
- 如需部署到公网环境,只需上传主页
index.html和配置文件link-data.js即可。
下载
【ximi_link_v1.01.zip】 (33 KB)
关于
代码:
1.index.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Ximi AI Navigator - Ultimate</title>
<style>
/* 核心变量定义:清爽现代的色带 */
:root {
--bg: #f4f6f8;
--surface: #ffffff;
--border: #e2e8f0;
--text-main: #1e293b;
--text-sub: #64748b;
--accent: #2563eb;
--sidebar-w: 189px;
--collapsed-w: 85px;
--header-h: 64px;
}
body { margin: 0; background: var(--bg); color: var(--text-main); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; }
/* ================= 顶部导航栏 ================= */
header { position: fixed; top: 0; left: 0; right: 0; height: var(--header-h); background: var(--surface); border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; z-index: 100; box-shadow: 0 1px 2px rgba(0,0,0,0.02); }
.header-left { display: flex; align-items: center; width: 240px; }
.menu-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; border-radius: 8px; margin-right: 12px; color: var(--text-sub); transition: 0.2s; }
.menu-btn:hover { background: #f1f5f9; color: var(--text-main); }
.logo { font-weight: 700; font-size: 18px; letter-spacing: 0.5px; }
/* 将搜索框移至顶部居中,完美协调样式 */
.header-center { flex: 1; display: flex; justify-content: center; }
.search-wrapper { display: flex; align-items: center; width: 100%; max-width: 500px; background: #f1f5f9; border-radius: 20px; padding: 4px 16px; border: 1px solid transparent; transition: 0.2s; }
.search-wrapper:focus-within { background: var(--surface); border-color: var(--accent); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }
.search-wrapper svg { color: var(--text-sub); width: 18px; height: 18px; }
.search-box { flex: 1; border: none; background: transparent; padding: 8px 12px; outline: none; font-size: 14px; color: var(--text-main); }
.header-right { width: 240px; } /* 占位平衡 */
/* ================= 侧边栏 ================= */
nav { position: fixed; top: var(--header-h); left: 0; width: var(--sidebar-w); height: calc(100vh - var(--header-h)); background: var(--surface); border-right: 1px solid var(--border); transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; padding: 16px 12px; box-sizing: border-box; }
.cat-item { display: flex; align-items: center; padding: 12px 16px; cursor: pointer; border-radius: 8px; margin-bottom: 4px; transition: 0.2s; color: var(--text-sub); }
.cat-item:hover { background: #e6e8eb; color: var(--text-main); }
.cat-item.active { background: #eff6ff; color: var(--accent); }
/* 侧边栏文字:默认显示,不加粗 */
.cat-text { font-size: 14px; font-weight: 400; white-space: nowrap; }
/* 侧边栏图标:默认完全隐藏 */
.cat-icon { display: none; width: 24px; height: 24px; border-radius: 6px; object-fit: cover; }
/* 侧边栏缩放状态 (.collapsed) */
nav.collapsed { width: var(--collapsed-w); padding: 16px 8px; }
nav.collapsed .cat-item { justify-content: center; padding: 14px 0; }
nav.collapsed .cat-text { display: none; } /* 隐藏文字 */
nav.collapsed .cat-icon { display: block; margin: 0; } /* 显示图标并居中 */
/* ================= 主内容区 ================= */
main { margin-top: var(--header-h); margin-left: var(--sidebar-w); padding: 32px; transition: margin-left 0.2s cubic-bezier(0.4, 0, 0.2, 1); }
nav.collapsed ~ main { margin-left: var(--collapsed-w); }
/* 卡片网格:最小宽度300px */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
/*
.card { background: var(--surface); padding: 20px; border-radius: 16px; border: 1px solid var(--border); display: flex; align-items: center; gap: 16px; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.02); }
.card:hover { transform: translateY(-2px); border-color: var(--border); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.card img { width: 50px; height: 50px; border-radius: 12px; flex-shrink: 0; border: 1px solid #f1f5f9; object-fit: cover; }
.card-content { flex: 1; min-width: 0; }
.card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.card-top h3 { margin: 0; font-size: 15px; font-weight: 600; color: var(--text-main); }
.tag { font-size: 11px; background: #f1f5f9; color: var(--text-sub); padding: 3px 8px; border-radius: 6px; white-space: nowrap; }
.card-desc { font-size: 13px; color: var(--text-sub); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
*/
/* ================= 卡片交互优化 ================= */
.card {
background: var(--surface);
padding: 20px;
border-radius: 15px;
border: 1px solid rgba(0,0,0,0.05);
display: flex;
align-items: center;
gap: 20px;
cursor: pointer;
/* 增加 overflow: hidden 确保图片放大时不会溢出卡片圆角 */
overflow: hidden;
transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03);
}
.card:hover {
transform: translateY(-6px);
border-color: var(--accent);
box-shadow: 0 16px 32px -8px rgba(37, 99, 235, 0.15);
}
/* 1. 图片悬浮轻微放大 */
.card img {
width: 56px;
height: 56px;
border-radius: 14px;
flex-shrink: 0;
object-fit: cover;
transition: transform 0.5s ease; /* 图片变化的平滑度 */
}
.card:hover img {
transform: scale(1.1); /* 鼠标移入时放大 10% */
}
/* 2. 分类标签 hover 交互:背景与文字变色 */
/* 鼠标移入卡片时,标签变色 */
.card:hover .tag {
background: var(--accent); /* 背景变为蓝色 */
color: #ffffff; /* 文字变为白色 */
}
/* 标题样式微调 */
.card-top h3 {
margin: 0;
font-size: 16px;
font-weight: 700;
color: #0f172a;
transition: color 0.3s ease;
}
.card:hover .card-top h3 {
color: var(--accent); /* 标题 hover 时也微变色,增加互动感 */
}
/* 容器核心:确保 flex 内容不溢出 */
.card-content {
flex: 1;
min-width: 0; /* 关键:防止 flex 容器被内部超长文本撑大 */
display: flex;
flex-direction: column;
}
/* 顶部区域:强制一行,空间自动分配 */
.card-top {
display: flex;
align-items: center;
justify-content: space-between; /* 标题靠左,标签靠右 */
gap: 12px;
margin-bottom: 6px;
white-space: nowrap; /* 确保不换行 */
}
.card-top h3 {
margin: 0;
font-size: 15px;
font-weight: 700;
color: var(--text-main);
overflow: hidden;
text-overflow: ellipsis; /* 标题过长时自动截断 */
}
/* 标签:禁止换行,缩小字体 */
.tag {
flex-shrink: 0; /* 标签绝不缩小 */
font-size: 10px;
font-weight: 600;
background: #f1f5f9;
color: #8b94a0;
padding: 3px 10px;
border-radius: 4px;
}
/* 描述:单行显示并自动省略 */
.card-desc {
font-size: 13px;
color: var(--text-sub);
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
footer { text-align: center; padding: 20px; color: #606060; font-size: 12px; border-top: 1px solid var(--border); }
</style>
<script src="link-date.js"></script>
</head>
<body>
<header>
<div class="header-left">
<div class="menu-btn" onclick="toggleSidebar()">
<svg viewBox="0 0 24 24" width="22" height="22" fill="currentColor"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg>
</div>
<div class="logo">Ximi Navigator</div>
</div>
<div class="header-center">
<div class="search-wrapper">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
<input type="text" id="searchInput" class="search-box" placeholder="搜索应用名称或描述 (实时筛选)...">
</div>
</div>
<div class="header-right"></div>
</header>
<nav id="sidebar">
<div id="cat-list"></div>
</nav>
<main>
<div id="results" class="grid"></div>
</main>
<footer>©️ 2026 All Rights Reserved. Powered by <a href="http://www.ximi.me/" target="_blank" title="希米导航" style="color: #1e293c;">Ximi</a></footer>
<script>
// 直接读取 link-date.js 中定义的全局变量 navData
// 确保 link-date.js 已经被正确引入
const links = (typeof navData !== 'undefined' ? navData.links : []) || [];
const categories = (typeof navData !== 'undefined' ? navData.categories : []) || [];
// 页面加载完成直接渲染,不再使用 fetch
window.addEventListener('DOMContentLoaded', () => {
if (links.length === 0) {
console.error("数据未正确加载,请检查 link-date.js 是否被 HTML 成功引入");
}
renderCats();
renderCards();
});
function toggleSidebar() {
document.getElementById('sidebar').classList.toggle('collapsed');
}
function renderCats() {
const catList = document.getElementById('cat-list');
let html = `
<div class="cat-item active" onclick="filterByCat(event, 'All')">
<img class="cat-icon" src="https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn">
<span class="cat-text">全部应用</span>
</div>`;
html += categories.map(c => `
<div class="cat-item" onclick="filterByCat(event, '${c.name}')">
<img class="cat-icon" src="${c.icon}" onerror="this.src='https://via.placeholder.com/20'">
<span class="cat-text">${c.name}</span>
</div>
`).join('');
catList.innerHTML = html;
}
function renderCards(filter = 'All', search = '') {
const resultsDiv = document.getElementById('results');
const searchLower = search.toLowerCase();
const filtered = links.filter(l => {
const matchCat = (filter === 'All' || l.categories === filter);
const matchSearch = (l.name.toLowerCase().includes(searchLower) ||
l.description.toLowerCase().includes(searchLower));
return matchCat && matchSearch;
});
resultsDiv.innerHTML = filtered.map(l => `
<div class="card" onclick="window.open('${l.url}')" title="${l.description}">
<img src="${l.icon}" onerror="this.src='https://via.placeholder.com/50'">
<div class="card-content">
<div class="card-top">
<h3>${l.name}</h3>
<span class="tag">${l.categories}</span>
</div>
<div class="card-desc">${l.description}</div>
</div>
</div>
`).join('');
}
function filterByCat(event, cat) {
document.querySelectorAll('.cat-item').forEach(el => el.classList.remove('active'));
event.currentTarget.classList.add('active');
renderCards(cat, document.getElementById('searchInput').value);
}
document.getElementById('searchInput').addEventListener('input', (e) => {
const activeCatEl = document.querySelector('.cat-item.active .cat-text');
const activeCat = activeCatEl ? (activeCatEl.innerText === '全部应用' ? 'All' : activeCatEl.innerText) : 'All';
renderCards(activeCat, e.target.value);
});
</script>
</body>
</html>
2.link-data.js
const navData = {
"categories": [
{
"name": "AI内容检测",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI写作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI办公工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI图像工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI学习网站",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI对话聊天",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI开发平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI提示指令",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI模型评测",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI编程工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI视频工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI训练模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI设计工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI语言翻译",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
},
{
"name": "AI音频工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn"
}
],
"links": [
{
"name": "doingfb",
"description": "一个专注于 Facebook、 Google 和 TikTok 的交流社区,分享社交媒体营销技巧、广告策略和最新动态",
"icon": "https://icon.horse/icon/doingfb.com",
"url": "https://doingfb.com/",
"categories": "AI写作工具"
},
{
"name": "Adsave App",
"description": "只需一键,即可解析并下载 Facebook 广告资料库中的高清视频与文案素材。支持无头浏览器模拟技术,轻松绕过反爬虫限制。",
"icon": "https://icon.horse/icon/adsave.app",
"url": "https://adsave.app/",
"categories": "AI写作工具"
},
{
"name": "2fa.cx",
"description": " 2fa.cx 在线双因素身份验证 (2FA) 工具,增强您的账户安全",
"icon": "https://icon.horse/icon/2fa.cx",
"url": "https://2fa.cx/",
"categories": "AI写作工具"
},
{
"name": "WhatsApp link",
"description": "WhatsApp链接生成器,为跨境电商与私域流量打造的营销工具",
"icon": "https://img.doingfb.com/2026-01-21/1769024978-328361-snipaste-2026-01-22-03-49-16.png",
"url": "https://ws.doingfb.com/",
"categories": "AI写作工具"
},
{
"name": "bmswitcher",
"description": "Facebook BM切换器\n一键切换新旧界面",
"icon": "https://icon.horse/icon/bmswitcher.com",
"url": "https://bmswitcher.com/",
"categories": "AI写作工具"
},
{
"name": "虚拟地址",
"description": "免费在线生成美国、日本、英国、中国等全球多国虚拟地址。提供姓名、电话、信用卡号等完整身份信息,适用于账号注册、开发测试",
"icon": "https://icon.horse/icon/duoguodizhi.com",
"url": "https://duoguodizhi.com/",
"categories": "AI写作工具"
},
{
"name": "CodeArts Doer",
"description": "一款由华为云推出的智能编程助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.huaweicloud.com/product/codeartside/snap.html?utm_source=ai-bio.cn",
"url": "https://www.huaweicloud.com/",
"categories": "AI编程工具"
},
{
"name": "Tabnine",
"description": "一款由AI驱动的代码补全工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tabnine.com/?utm_source=ai-bio.cn",
"url": "https://www.tabnine.com/",
"categories": "AI编程工具"
},
{
"name": "Cursor",
"description": "AI编程工具,支持智能补全与代码协作,提高开发效率。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.cursor.com/?utm_source=ai-bio.cn",
"url": "https://www.cursor.com/",
"categories": "AI编程工具"
},
{
"name": "Windsurf",
"description": "编程开发的AI辅助工具,支持智能补全与多语言编码环境。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://windsurf.com/?utm_source=ai-bio.cn",
"url": "https://windsurf.com/",
"categories": "AI编程工具"
},
{
"name": "代码小浣熊Raccoon",
"description": "商汤科技推出的智能编程助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiaohuanxiong.com/login?utm_source=blmay63",
"url": "https://www.xiaohuanxiong.com/",
"categories": "AI编程工具"
},
{
"name": "Vidu",
"description": "生数科技与清华大学联合开发的一款AI视频生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.vidu.cn/?utm_source=referral&utm_medium=invitefriends&utm_campaign=long_term&utm_term=IKoyyUh6B2w6SNL0&utm_content=",
"url": "https://www.vidu.cn/",
"categories": "AI视频工具"
},
{
"name": "拍我AI",
"description": "由北京爱诗科技有限公司开发的AI视频生成平台,它是知名AI视频生成平台PixVerse的国内版本。",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/06/faviconV2.jpg",
"url": "https://pai.video/",
"categories": "AI视频工具"
},
{
"name": "可灵AI",
"description": "快手开发的一款视频生成大模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://app.klingai.com/cn",
"url": "https://app.klingai.com/",
"categories": "AI视频工具"
},
{
"name": "Hedra",
"description": "一款由斯坦福大学研究团队开发的AI对口型视频生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hedra.com/?ref=ai-bio.cn",
"url": "https://www.hedra.com/",
"categories": "AI视频工具"
},
{
"name": "Viggle",
"description": "一款AI视频生成工具,专注于将静态图像转化为动态的动画视频",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://viggle.ai/home?ref=ai-bio.cn",
"url": "https://viggle.ai/",
"categories": "AI视频工具"
},
{
"name": "Runway",
"description": "一款创新型AIGC视频工具,视频合成成、绿幕抠除等",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://runwayml.com/?ref=ai-bio.cn",
"url": "https://runwayml.com/",
"categories": "AI视频工具"
},
{
"name": "Stability AI",
"description": "一家总部位于英国伦敦的全球化AI研究型企业,专注于开发开源的生成式AI模型,涵盖图像、语言、音频、视频、3D和生物学等多个领域",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://stability.ai/?utm_source=ai-bio.cn",
"url": "https://stability.ai/",
"categories": "AI视频工具"
},
{
"name": "vidIQ",
"description": "YouTube视频优化与SEO数据分析工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://vidiq.com/fenggegecn",
"url": "https://vidiq.com/",
"categories": "AI视频工具"
},
{
"name": "VEED.IO",
"description": "强大的在线视频编辑与AI功能,提升视频创作效率",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://veed.cello.so/FrIaKFlTxKn",
"url": "https://veed.cello.so/",
"categories": "AI视频工具"
},
{
"name": "Pika",
"description": "PiaLabs 推出的革命性AI视频生成和编辑工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pika.art/home",
"url": "https://pika.art/",
"categories": "AI视频工具"
},
{
"name": "京东Deco",
"description": "京东推出的设计稿一键生成多端代码的工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/11/favicon.ico",
"url": "https://ling-deco.jd.com/",
"categories": "AI编程工具"
},
{
"name": "笔灵AIPPT",
"description": "答辩PPT、千字自述稿一键生成,预测导师提问,答辩一次过!",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/05/紫色logo.png",
"url": "https://ibiling.cn/",
"categories": "AI办公工具"
},
{
"name": "法行宝",
"description": "面向大众的 AI 法律问答与条文理解工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ailegal.baidu.com",
"url": "https://ailegal.baidu.com/",
"categories": "AI办公工具"
},
{
"name": "得理法搜",
"description": "面向法律场景的智能检索与类案分析AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://data.delilegal.com",
"url": "https://data.delilegal.com/",
"categories": "AI办公工具"
},
{
"name": "天工AI",
"description": "昆仑万维开发的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tiangong.cn/?ref=ai-bio.cn",
"url": "https://www.tiangong.cn/",
"categories": "AI办公工具"
},
{
"name": "万知",
"description": "零一万物推出的问答、阅读、创作的一站式AI工作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.wanzhi.com/?ref=ai-bio.cn",
"url": "https://www.wanzhi.com/",
"categories": "AI办公工具"
},
{
"name": "讯飞智文",
"description": "科大讯飞推出的PPT智能生成工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/09/favicon.png",
"url": "https://zhiwen.xfyun.cn/",
"categories": "AI办公工具"
},
{
"name": "Powerpresent Al",
"description": "一款创建精美的演示稿的AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://powerpresent.ai/?utm_source=ai-bio.cn",
"url": "https://powerpresent.ai/",
"categories": "AI办公工具"
},
{
"name": "Tome",
"description": "一个可帮助用户通过AI制作PPT的人工智能平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://landing-staging.tome.app",
"url": "https://landing-staging.tome.app/",
"categories": "AI办公工具"
},
{
"name": "Napkin",
"description": "将文本内容转化为演示图像的AI办公工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.napkin.ai/?utm_source=ai-bio.cn",
"url": "https://www.napkin.ai/",
"categories": "AI办公工具"
},
{
"name": "Decktopus AI",
"description": "一款在线生成演示文稿的AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.decktopus.com/?ref=ai-bio.cn",
"url": "https://www.decktopus.com/",
"categories": "AI办公工具"
},
{
"name": "歌者PPT",
"description": "一款生成PPT的智能AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gezhe.com/?ref=ai-bio.cn",
"url": "https://gezhe.com/",
"categories": "AI办公工具"
},
{
"name": "万兴智演",
"description": "万兴科技推出的一款AIPPT和演示的工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zhiyan.wondershare.cn/?ref=ai-bio.cn",
"url": "https://zhiyan.wondershare.cn/",
"categories": "AI办公工具"
},
{
"name": "美图 LivePPT",
"description": "美图推出的一款在线生成PPT的AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.designkit.com/ppt/?ref=ai-bio.cn",
"url": "https://www.designkit.com/",
"categories": "AI办公工具"
},
{
"name": "Gamma APP",
"description": "一款幻灯片演示生成的AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gamma.app/?ref=ai-bio.cn",
"url": "https://gamma.app/",
"categories": "AI办公工具"
},
{
"name": "mindshow",
"description": "输入内容即生成演示的工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/04/1713184083-mindshow-icon.png",
"url": "https://www.mindshow.fun/",
"categories": "AI办公工具"
},
{
"name": "Formularizer",
"description": "一个电子表格AI平台,可根据您的指令提供即时公式、解释和数据见解。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://formularizer.com",
"url": "https://formularizer.com/",
"categories": "AI办公工具"
},
{
"name": "ChatDOC",
"description": "一款基于人工智能技术的文档交互工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatdoc.com//?utm_source=ai-bio.cn",
"url": "https://chatdoc.com/",
"categories": "AI办公工具"
},
{
"name": "AI Short",
"description": "一个AI提示词管理和共享平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.aishort.top/?ref=ai-bio.cn",
"url": "https://www.aishort.top/",
"categories": "AI提示指令"
},
{
"name": "绘AI",
"description": "一个专注于AI提示词创作成果展示与收益共享的创新平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.ai016.com/join?inviteCode=IySDKg",
"url": "https://www.ai016.com/",
"categories": "AI提示指令"
},
{
"name": "词魂",
"description": "AIGC精品提示词库",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://icihun.com/?ref=ai-bio.cn",
"url": "https://ai-bio.cn/",
"categories": "AI提示指令"
},
{
"name": "PromptPilot",
"description": "由字节跳动旗下火山引擎推出的大模型智能解决方案平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://promptpilot.volcengine.com/?utm_source=ai-bio.cn",
"url": "https://promptpilot.volcengine.com/",
"categories": "AI提示指令"
},
{
"name": "Learn Prompting",
"description": "一个专注于AI提示词设计和优化的在线学习平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://learnprompting.org/?utm_source=ai-bio.cn",
"url": "https://learnprompting.org/",
"categories": "AI提示指令"
},
{
"name": "Super AI",
"description": "通过AI对复杂文档处理,流程完全自动化,并保证结果。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://super.ai",
"url": "https://super.ai/",
"categories": "AI办公工具"
},
{
"name": "小黑 OmniBox",
"description": "解析全网内容 秒变文本生产力",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/10/OmniBox-icon-1.jpg",
"url": "https://www.omnibox.pro/",
"categories": "AI办公工具"
},
{
"name": "职达 AI 简历",
"description": "一款专业的 AI 简历生成与优化平台,通过先进的人工智能技术,为用户提供更加智能、高效的简历创作与优化服务。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.offerdow.com/?utm_source=ai-bio.cn",
"url": "https://www.offerdow.com/",
"categories": "AI办公工具"
},
{
"name": "智面星",
"description": "一款基于AI技术的面试辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aiqtools.cn/?ref=ai-bio.cn",
"url": "https://aiqtools.cn/",
"categories": "AI办公工具"
},
{
"name": "白瓜面试",
"description": "一款专为在线面试和笔试场景设计的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://m.baigua.com/?ref=ai-bio.cn",
"url": "https://m.baigua.com/",
"categories": "AI办公工具"
},
{
"name": "Otter.ai",
"description": "AI会议记录和实时转录",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://otter.ai",
"url": "https://otter.ai/",
"categories": "AI办公工具"
},
{
"name": "通义听悟",
"description": "阿里云推出的一款用于办公、学习的AI助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/01/faviconV2.png",
"url": "https://tingwu.aliyun.com/",
"categories": "AI办公工具"
},
{
"name": "TinyWow",
"description": "免费多功能在线文件处理与AI工具平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://tinywow.com",
"url": "https://tinywow.com/",
"categories": "AI办公工具"
},
{
"name": "ima.copilot",
"description": "腾讯推出的一款 AI 智能工作台产品,基于腾讯混元大模型技术",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/07/ima-logo.png",
"url": "https://ima.qq.com/",
"categories": "AI办公工具"
},
{
"name": "Airtable Assistant",
"description": "由 Airtable 公司推出的一款强大的 AI 驱动工具,旨在帮助用户无需编码即可将 AI 能力集成到他们的应用和工作流程中",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.airtable.com/platform/ai?utm_source=ai-bio.cn",
"url": "https://www.airtable.com/",
"categories": "AI办公工具"
},
{
"name": "Monica",
"description": "一款功能强大的一站式AI助手,它集成了多种先进的AI模型,如GPT-4、Claude 3.5、Gemini等",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://monica.im/?utm_source=ai-bio.cn",
"url": "https://monica.im/",
"categories": "AI办公工具"
},
{
"name": "语鲸",
"description": "一款由北京深言科技有限责任公司推出的AI阅读辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://lingowhale.com/home?ref=ai-bio.cn",
"url": "https://lingowhale.com/",
"categories": "AI办公工具"
},
{
"name": "熊猫办公",
"description": "熊猫办公是一款集成了AI技术的办公服务平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tukuppt.com/?ref=ai-bio.cn",
"url": "https://www.tukuppt.com/",
"categories": "AI办公工具"
},
{
"name": "小微助手",
"description": "微信推出的一款桌面端AI效率工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://xiaowei.weixin.qq.com/?ref=ai-bio.cn",
"url": "https://xiaowei.weixin.qq.com/",
"categories": "AI办公工具"
},
{
"name": "Timely",
"description": "AI时间跟踪软件,帮助团队准确追踪时间",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://timelyapp.com",
"url": "https://timelyapp.com/",
"categories": "AI办公工具"
},
{
"name": "Notion AI",
"description": "Notion 公司开发的一款人工智能工具,内置于 Notion 应用程序中,旨在帮助用户更高效地处理信息和任务。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.notion.com/product/ai?utm_source=ai-bio.cn",
"url": "https://www.notion.com/",
"categories": "AI办公工具"
},
{
"name": "飞书多维表格",
"description": "飞书推出的一款智能化数据管理与协作工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/09/feishu-ai-register-logo.png",
"url": "https://dis.csqixiang.cn/",
"categories": "AI办公工具"
},
{
"name": "酷表 ChatExcel",
"description": "AI Excel 数据分析辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.chatexcel.com/workspace/start?partner_uuid=32A8C886CF4230369310583C5732F933&local_login=1",
"url": "https://www.chatexcel.com/",
"categories": "AI办公工具"
},
{
"name": "小绿鲸",
"description": "一款集翻译、笔记、文献管理、文献汇报、写作功能于一体的云端英文文献阅读器。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xljsci.com/?channelCode=LkJgBh",
"url": "https://www.xljsci.com/",
"categories": "AI办公工具"
},
{
"name": "博思白板",
"description": "一款集成了 AI 生成内容(AIGC)能力的在线协作平台,由万兴科技生态成员博思云创开发",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://boardmix.cn?utm_source=referrals&utm_content=aibio&_channel_track_key=AJrhMR7K",
"url": "https://boardmix.cn/",
"categories": "AI办公工具"
},
{
"name": "AiPPT",
"description": "一款基于人工智能的演示文稿工具包,能够一键生成高质量的 PowerPoint 演示文稿和 Google 幻灯片",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/AIPPT_logo.png",
"url": "https://www.aippt.cn/",
"categories": "AI办公工具"
},
{
"name": "博思AIPPT",
"description": "博思推出一款在线PPT制作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pptgo.cn/?utm_source=referrals&utm_content=aibio&_channel_track_key=IL8n2vty",
"url": "https://pptgo.cn/",
"categories": "AI办公工具"
},
{
"name": "咔片PPT",
"description": "一款基于人工智能技术的在线PPT制作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.cappt.cc/?mtm_campaign=CZQD-aibox-tg0004-10090",
"url": "https://www.cappt.cc/",
"categories": "AI办公工具"
},
{
"name": "多面鹅",
"description": "一款面向求职者的AI面试平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://offergoose.cn/?ref=ai-bio.cn",
"url": "https://offergoose.cn/",
"categories": "AI办公工具"
},
{
"name": "面灵AI",
"description": "一款基于DeepSeek大模型的AI面试助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/favicon.png",
"url": "https://mianling.cn/",
"categories": "AI办公工具"
},
{
"name": "Mercor",
"description": "一款由AI驱动的全球招聘平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://mercor.com/?ref=ai-bio.cn",
"url": "https://mercor.com/",
"categories": "AI办公工具"
},
{
"name": "自由画布",
"description": "是百度文库与百度网盘联合打造的 AI 创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://wenku.baidu.com/pcactivity/freeBoard?utm_source=ai-bio.cn",
"url": "https://wenku.baidu.com/",
"categories": "AI办公工具"
},
{
"name": "小画桌",
"description": "一款专业强大的在线协作白板工具,集思维导图、流程图、AIGC和笔记文档等多种创意表达能力于一体。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiaohuazhuo.com/?ref=ai-bio.cn",
"url": "https://www.xiaohuazhuo.com/",
"categories": "AI办公工具"
},
{
"name": "亿图脑图",
"description": "基于云的跨端思维导图软件",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.edrawsoft.cn/mindmaster",
"url": "https://www.edrawsoft.cn/",
"categories": "AI办公工具"
},
{
"name": "SophNet",
"description": "独家推出DeepSeek满血极速版,TPS指标超100,是目前DeepSeek API 推理速度最快的平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.sophnet.com/#?code=OMQFR0",
"url": "https://www.sophnet.com/",
"categories": "AI开发平台"
},
{
"name": "文心智能体平台",
"description": "中文AI智能体构建与企业级自动化助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://agents.baidu.com",
"url": "https://agents.baidu.com/",
"categories": "AI开发平台"
},
{
"name": "n8n",
"description": "开源可视化流程编排与效率提升方案工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://n8n.io",
"url": "https://n8n.io/",
"categories": "AI开发平台"
},
{
"name": "DeepL翻译",
"description": "全球领先的AI翻译工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.deepl.com/?ref=ai-bio.cn",
"url": "https://www.deepl.com/",
"categories": "AI语言翻译"
},
{
"name": "火山翻译",
"description": "字节跳动旗下火山引擎推出的一款智能翻译工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://translate.volcengine.com/?ref=ai-bio.cn",
"url": "https://translate.volcengine.com/",
"categories": "AI语言翻译"
},
{
"name": "阿里翻译",
"description": "由阿里巴巴集团推出的一款多领域、多语种的在线机器翻译工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://translate.alibaba.com/?ref=ai-bio.cn",
"url": "https://translate.alibaba.com/",
"categories": "AI语言翻译"
},
{
"name": "搜狗翻译",
"description": "智能翻译的高效助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://fanyi.sogou.com/text?ref=ai-bio.cn",
"url": "https://fanyi.sogou.com/",
"categories": "AI语言翻译"
},
{
"name": "GitHub Copilot",
"description": "AI编程辅助工具,智能补全代码、提升开发效率",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://github.com/features/copilot?utm_source=ai-bio.cn",
"url": "https://github.com/",
"categories": "AI编程工具"
},
{
"name": "星火飞码",
"description": "科大讯飞推出的AI编程助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://iflycode.xfyun.cn/?ref=ai-bio.cn",
"url": "https://iflycode.xfyun.cn/",
"categories": "AI编程工具"
},
{
"name": "通义灵码",
"description": "阿里云出品的一款基于通义大模型的智能编码辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://tongyi.aliyun.com/lingma?ref=ai-bio.cn",
"url": "https://tongyi.aliyun.com/",
"categories": "AI编程工具"
},
{
"name": "文心快码",
"description": "百度基于文心大模型推出的一款智能编码助手。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://comate.baidu.com/?inviteCode=fzpn8sdh",
"url": "https://comate.baidu.com/",
"categories": "AI编程工具"
},
{
"name": "C知道",
"description": "CSDN推出的AI问答工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/11/so-csdn-logo.png",
"url": "https://so.csdn.net/",
"categories": "AI编程工具"
},
{
"name": "包图网AI素材库",
"description": "包图网所提供的特色图库服务",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ibaotu.com/tupian/shuziyishu.html?ref=ai-bio.cn",
"url": "https://ibaotu.com/",
"categories": "AI设计工具"
},
{
"name": "墨刀AI",
"description": "墨刀平台推出的原型设计AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://modao.cc/feature/ai.html?ref=ai-bio.cn",
"url": "https://modao.cc/",
"categories": "AI设计工具"
},
{
"name": "小绿鲸",
"description": "一款集翻译、笔记、文献管理、文献汇报、写作功能于一体的云端英文文献阅读器。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xljsci.com/?channelCode=LkJgBh",
"url": "https://www.xljsci.com/",
"categories": "AI语言翻译"
},
{
"name": "沉浸式翻译",
"description": "双语对照阅读与字幕翻译神器,免费,口碑炸裂!",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://immersivetranslate.com/?via=feng-gao",
"url": "https://immersivetranslate.com/",
"categories": "AI语言翻译"
},
{
"name": "腾讯交互翻译",
"description": "腾讯AI Lab推出的一款多语言AI翻译工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/01/qqtransmart-website-2.png",
"url": "https://transmart.qq.com/",
"categories": "AI语言翻译"
},
{
"name": "Deep Translate",
"description": "免费 AI 翻译插件,打造你的双语浏览器",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://deeptranslate.ai/?ref=ai-bio.cn",
"url": "https://deeptranslate.ai/",
"categories": "AI语言翻译"
},
{
"name": "谷歌翻译",
"description": "谷歌公司推出的一款免费在线翻译服务工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://translate.google.com/?ref=ai-bio.cn",
"url": "https://translate.google.com/",
"categories": "AI语言翻译"
},
{
"name": "必应翻译",
"description": "微软公司推出的一款在线翻译工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.bing.com/translator/?ref=ai-bio.cn",
"url": "https://www.bing.com/",
"categories": "AI语言翻译"
},
{
"name": "腾讯翻译君",
"description": "腾讯公司推出的一款以AI内核驱动的翻译产品",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://fanyi.qq.com/?ref=ai-bio.cn",
"url": "https://fanyi.qq.com/",
"categories": "AI语言翻译"
},
{
"name": "象寄翻译",
"description": "由象寄科技推出的一款强大的AI翻译工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiangjifanyi.com/console/register-invite/0646dccd0f70eb92",
"url": "https://www.xiangjifanyi.com/",
"categories": "AI语言翻译"
},
{
"name": "网易见外",
"description": "网易有道推出的一款集成了人工智能翻译、视频制作、字幕翻译等功能的智能工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://sight.youdao.com/?ref=ai-bio.cn",
"url": "https://sight.youdao.com/",
"categories": "AI语言翻译"
},
{
"name": "腾讯元宝",
"description": "腾讯公司推出的一款免费AI智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://yuanbao.tencent.com",
"url": "https://yuanbao.tencent.com/",
"categories": "AI对话聊天"
},
{
"name": "造梦次元",
"description": "一款专注二次元虚拟角色互动的AI聊天工具。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ciyuan.ideaflow.pro",
"url": "https://ciyuan.ideaflow.pro/",
"categories": "AI对话聊天"
},
{
"name": "Claude",
"description": "由 Anthropic 公司开发的一款先进的人工智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.anthropic.com?utm_source=ai-bio.cn",
"url": "https://www.anthropic.com/",
"categories": "AI对话聊天"
},
{
"name": "Janitor AI",
"description": "一款创新的人工智能平台,结合了数据管理和角色互动的双重功能。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://janitorai.com/?utm_source=ai-bio.cn",
"url": "https://janitorai.com/",
"categories": "AI对话聊天"
},
{
"name": "Poe",
"description": "由知名问答社区Quora开发的一款AI聊天平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://poe.com/?ref=ai-bio.cn",
"url": "https://poe.com/",
"categories": "AI对话聊天"
},
{
"name": "MiniMax",
"description": "上海稀宇科技有限公司推出的一款AI智能问答助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chat.minimax.io/?utm_source=ai-bio.cn",
"url": "https://chat.minimax.io/",
"categories": "AI对话聊天"
},
{
"name": "DeepSeek",
"description": "杭州深度求索公司开发的一款AI对话助手和高性能AI模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.deepseek.com/?ref=ai-bio.cn",
"url": "https://www.deepseek.com/",
"categories": "AI对话聊天"
},
{
"name": "Gemini",
"description": "由谷歌开发的一系列AI模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gemini.google.com/?ref=ai-bio.cn",
"url": "https://gemini.google.com/",
"categories": "AI对话聊天"
},
{
"name": "百度AI助手",
"description": "由百度公司研发的一款AI智能体助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chat.baidu.com/?ref=ai-bio.cn",
"url": "https://chat.baidu.com/",
"categories": "AI对话聊天"
},
{
"name": "讯飞星火",
"description": "科大讯飞推出的AI对话工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://xinghuo.xfyun.cn/desk?ch=xh_1azNvW ",
"url": "https://xinghuo.xfyun.cn/",
"categories": "AI对话聊天"
},
{
"name": "文心一言",
"description": "百度推出的基于文心大模型的AI对话工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://yiyan.baidu.com/?ref=ai-bio.cn",
"url": "https://yiyan.baidu.com/",
"categories": "AI对话聊天"
},
{
"name": "Copilot",
"description": "微软推出的网页版AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://copilot.microsoft.com/?ref=ai-bio.cn",
"url": "https://copilot.microsoft.com/",
"categories": "AI对话聊天"
},
{
"name": "Kimi",
"description": "Kimi是一个有着超大“内存”的AI智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://kimi.moonshot.cn/?ref=ai-bio.cn",
"url": "https://kimi.moonshot.cn/",
"categories": "AI对话聊天"
},
{
"name": "ChatGPT",
"description": "AI对话生成工具,支持智能聊天与内容创作",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatgpt.com",
"url": "https://chatgpt.com/",
"categories": "AI对话聊天"
},
{
"name": "Grok",
"description": "xAI公司开发的最新一代人工智能模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://grok.com/?referrer=website?ref=ai-bio.cn",
"url": "https://grok.com/",
"categories": "AI对话聊天"
},
{
"name": "GPT-4o",
"description": "OpenAI开发的一款先进的多模态语言模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://openai.com/zh-Hans-CN/index/hello-gpt-4o",
"url": "https://openai.com/",
"categories": "AI对话聊天"
},
{
"name": "商量SenseChat",
"description": "由商汤科技开发的一款基于自研大模型的AI聊天助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chat.sensetime.com/?ref=ai-bio.cn",
"url": "https://chat.sensetime.com/",
"categories": "AI对话聊天"
},
{
"name": "天工AI",
"description": "昆仑万维开发的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tiangong.cn/?ref=ai-bio.cn",
"url": "https://www.tiangong.cn/",
"categories": "AI对话聊天"
},
{
"name": "问小白",
"description": "元石科技开发的一款AI智能助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/02/wenxiaobai-logo-2.png",
"url": "http://dis.csqixiang.cn/",
"categories": "AI对话聊天"
},
{
"name": "万知",
"description": "零一万物推出的问答、阅读、创作的一站式AI工作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.wanzhi.com/?ref=ai-bio.cn",
"url": "https://www.wanzhi.com/",
"categories": "AI对话聊天"
},
{
"name": "海螺AI",
"description": "上海稀宇科技有限公司(MiniMax)推出的一款基于自研多模态大语言模型的AI智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://hailuoai.com",
"url": "https://hailuoai.com/",
"categories": "AI对话聊天"
},
{
"name": "智谱清言",
"description": "一款支持AI绘画、视频生成、代码编辑、PPT生成等多功能的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatglm.cn/main/alltoolsdetail?lang=zh?ref=ai-bio.cn",
"url": "https://chatglm.cn/",
"categories": "AI对话聊天"
},
{
"name": "Weights",
"description": "一款强大的AI创作工具,它利用先进的人工智能技术,为用户提供了一个多功能的创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.weights.com/zh?ref=ai-bio.cn",
"url": "https://www.weights.com/",
"categories": "AI对话聊天"
},
{
"name": "千问",
"description": "阿里通义千问大模型打造的AI对话助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/10/qianwen-icon.png",
"url": "https://www.qianwen.com/",
"categories": "AI对话聊天"
},
{
"name": "讯飞智能翻译",
"description": "科大讯飞推出的一款基于人工智能的翻译平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://fanyi.xfyun.cn/console/trans/text?ref=ai-bio.cn",
"url": "https://fanyi.xfyun.cn/",
"categories": "AI语言翻译"
},
{
"name": "百度AI同传助手",
"description": "中英文音视频同传字幕工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://fanyi.baidu.com/appdownload/download.html?tab=helper&fr=pcproduct",
"url": "https://fanyi.baidu.com/",
"categories": "AI语言翻译"
},
{
"name": "QuillBot",
"description": "一款基于人工智能的写作辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://try.quillbot.com/vbfz1jw4dhz1",
"url": "https://try.quillbot.com/",
"categories": "AI语言翻译"
},
{
"name": "AskManyAI",
"description": "国内推出的集成型AI对话与智能助手平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://askmany.cn/login?i=3e4336ce",
"url": "https://askmany.cn/",
"categories": "AI开发平台"
},
{
"name": "Weights",
"description": "一款强大的AI创作工具,它利用先进的人工智能技术,为用户提供了一个多功能的创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.weights.com/zh?ref=ai-bio.cn",
"url": "https://www.weights.com/",
"categories": "AI开发平台"
},
{
"name": "码上飞",
"description": "一句话生成应用的AI软件开发平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.codeflying.net/?source=aigjx&source_id=hot",
"url": "https://www.codeflying.net/",
"categories": "AI开发平台"
},
{
"name": "秒哒",
"description": "百度无代码应用生成与智能体协作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.miaoda.cn/?invitecode=user-8nb8rva0969s",
"url": "https://www.miaoda.cn/",
"categories": "AI开发平台"
},
{
"name": "Coze",
"description": "由字节跳动出品的一款AI智能体开发平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/coze-ai-icon.png",
"url": "http://dis.csqixiang.cn/",
"categories": "AI开发平台"
},
{
"name": "BigModel",
"description": "智谱AI推出的一款专为开发者设计的大模型开发平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.bigmodel.cn/invite?icode=Tm4KIpK71nS5hXry63ebnuZLO2QH3C0EBTSr%2BArzMw4%3D",
"url": "https://www.bigmodel.cn/",
"categories": "AI开发平台"
},
{
"name": "创客贴AI",
"description": "由创客贴公司开发的一款智能设计在线协作平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/chuangkit-aiart-icon.png",
"url": "https://aiart.chuangkit.com/",
"categories": "AI设计工具"
},
{
"name": "Logo Diffusion",
"description": "一款借助生成式AI来设计和创建 Logo 的工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://logodiffusion.com/?ref=ai-bio.cn",
"url": "https://logodiffusion.com/",
"categories": "AI设计工具"
},
{
"name": "Dora AI",
"description": "AI在线生成精美3D动画的网站",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.dora.run/ai?utm_source=ai-bio.cn",
"url": "https://www.dora.run/",
"categories": "AI设计工具"
},
{
"name": "绘蛙",
"description": "阿里巴巴集团推出的一款AI电商营销工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.ihuiwa.com/invite?huiwaInviteCode=SRV3HL",
"url": "https://www.ihuiwa.com/",
"categories": "AI设计工具"
},
{
"name": "匠紫AI",
"description": "一站式的AI设计平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://jiangziai.com/?ref=ai-bio.cn",
"url": "https://jiangziai.com/",
"categories": "AI设计工具"
},
{
"name": "Lovart",
"description": "一款基于人工智能技术的设计平台,专注于为创意行业提供高效、智能的设计解决方案",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.lovart.ai/?utm_source=ai-bio.cn",
"url": "https://www.lovart.ai/",
"categories": "AI设计工具"
},
{
"name": "燕雀光年",
"description": "一款基于 AI 技术生成logo的在线设计平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/06/favicon.ico",
"url": "https://www.yanqueai.com/",
"categories": "AI设计工具"
},
{
"name": "稿定AI设计",
"description": "一款由稿定科技有限公司推出的AI内容创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.gaoding.com/utms/e7261e13e8a9431d92cd53dad7d73d40",
"url": "https://www.gaoding.com/",
"categories": "AI设计工具"
},
{
"name": "简单设计",
"description": "免费的在线设计与图片处理工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://jiandan.link/?rel=ZQC51Q2K",
"url": "https://jiandan.link/",
"categories": "AI设计工具"
},
{
"name": "爱设计",
"description": "一款基于人工智能技术的在线设计平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.isheji.com/?utm_source=ai-bio.cn",
"url": "https://www.isheji.com/",
"categories": "AI设计工具"
},
{
"name": "即时AI",
"description": "全球首款通过自然语言描述生成可编辑的UI设计稿的工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://jsai.cc/ai/create?ref=ai-bio.cn",
"url": "https://ai-bio.cn/",
"categories": "AI设计工具"
},
{
"name": "Motiff妙多",
"description": "猿辅导旗下推出的AI设计工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.motiff.cn/?ref=ai-bio.cn",
"url": "https://www.motiff.cn/",
"categories": "AI设计工具"
},
{
"name": "Zeabur",
"description": "AI应用部署平台,支持多语言与容器化部署,助力智能项目快速上线",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zeabur.com/referral?referralCode=30126431",
"url": "https://zeabur.com/",
"categories": "AI开发平台"
},
{
"name": "Google AI Studio",
"description": "AI开发平台工具,支持Gemini模型调试与应用原型构建。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aistudio.google.com/welcome?utm_source=ai-bio.cn",
"url": "https://aistudio.google.com/",
"categories": "AI开发平台"
},
{
"name": "Trickle AI",
"description": "AI应用开发平台,通过自然语言快速生成应用、网站、表单",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://trickle.so/?utm_source=ai-bio.cn",
"url": "https://trickle.so/",
"categories": "AI开发平台"
},
{
"name": "Netlify",
"description": "AI前端托管平台,支持智能项目自动构建与部署上线",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.netlify.com/?utm_source=ai-bio.cn",
"url": "https://www.netlify.com/",
"categories": "AI开发平台"
},
{
"name": "Vercel",
"description": "AI开发部署平台,支持前端项目与AI工具一键上线",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://vercel.com/?utm_source=ai-bio.cn",
"url": "https://vercel.com/",
"categories": "AI开发平台"
},
{
"name": "无阶未来",
"description": "个致力于为广大热爱 AI 应用开发、寻求 AI 工具、炼丹的小伙伴儿们提供便利的 AI 应用与弹性算网平台。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.aivinla.com/register?code=27975652",
"url": "https://www.aivinla.com/",
"categories": "AI开发平台"
},
{
"name": "Genspark",
"description": "一款由前百度高管创立的 AI 代理引擎,旨在提供无广告、无偏见且高度个性化的搜索体验",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.genspark.ai/?utm_source=ai-bio.cn",
"url": "https://www.genspark.ai/",
"categories": "AI开发平台"
},
{
"name": "模力方舟",
"description": "由开源中国(Gitee)推出的针对 AI 应用场景的开源平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/Gitee-AI-logo.png",
"url": "https://ai.gitee.com/",
"categories": "AI开发平台"
},
{
"name": "星鸾云",
"description": "一个专注于提供高密度算力解决方案的AI云平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xingluan.cn/register?invitation_code=0968872718",
"url": "https://www.xingluan.cn/",
"categories": "AI开发平台"
},
{
"name": "仙宫云",
"description": "浙江仙宫云科技有限公司推出的一款云算力在线租赁平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiangongyun.com/register/DJ3D5W",
"url": "https://www.xiangongyun.com/",
"categories": "AI开发平台"
},
{
"name": "硅基流动",
"description": "一个专注于生成式人工智能(GenAI)计算基础设施的平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cloud.siliconflow.cn/i/ArPjyHqJ",
"url": "https://cloud.siliconflow.cn/",
"categories": "AI开发平台"
},
{
"name": "阿里云百炼",
"description": "阿里云推出的一站式大模型开发与服务平台,旨在帮助企业和开发者快速构建、部署和优化定制化大模型。",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/aliyun-bailian-logo.png",
"url": "https://bailian.console.aliyun.com/",
"categories": "AI开发平台"
},
{
"name": "Suna",
"description": "Kortix 推出的一款开源通用型 AI 智能体平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.suna.so/?utm_source=ai-bio.cn",
"url": "https://www.suna.so/",
"categories": "AI开发平台"
},
{
"name": "响指 HaiSnap",
"description": "响指 HaiSnap 是什么 响指 Ha...",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.haisnap.com/?utm_source=ai-bio.cn",
"url": "https://www.haisnap.com/",
"categories": "AI开发平台"
},
{
"name": "百宝箱Tbox",
"description": "由蚂蚁集团推出的AI原生应用开发平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/8581725368494_.pic_.jpg",
"url": "https://tbox.alipay.com/",
"categories": "AI开发平台"
},
{
"name": "Archon",
"description": "Archon是一个开源的AI智能体框架",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://github.com/coleam00/Archon",
"url": "https://github.com/",
"categories": "AI开发平台"
},
{
"name": "Leap",
"description": "一款AI驱动的工作流自动化工具,专为开发者和企业设计",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tryleap.ai/?ref=ai-bio.cn",
"url": "https://www.tryleap.ai/",
"categories": "AI开发平台"
},
{
"name": "ChatDev",
"description": "一个大模型驱动的全流程自动化软件开发框架",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatdev.modelbest.cn/?ref=ai-bio.cn",
"url": "https://chatdev.modelbest.cn/",
"categories": "AI开发平台"
},
{
"name": "Anakin.ai",
"description": "一个一站式无代码AI应用构建平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://anakin.ai/?ref=ai-bio.cn",
"url": "https://anakin.ai/",
"categories": "AI开发平台"
},
{
"name": "句无忧",
"description": "智能文本查重与内容质量检测工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/11/句无忧-logo.png",
"url": "https://www.check51.com/",
"categories": "AI内容检测"
},
{
"name": "Isgen",
"description": "Isgen是什么 Isgen是一款...",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://isgen.ai/?utm_source=ai-bio.cn",
"url": "https://isgen.ai/",
"categories": "AI内容检测"
},
{
"name": "Mitata AI",
"description": "一款专业的AI文章检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.mitataai.com/?ref=ai-bio.cn",
"url": "https://www.mitataai.com/",
"categories": "AI内容检测"
},
{
"name": "GPTZero",
"description": "由普林斯顿大学学生Edward Tian开发的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gptzero.me/?ref=ai-bio.cn",
"url": "https://gptzero.me/",
"categories": "AI内容检测"
},
{
"name": "StudyCorgi ChatGPT Detector",
"description": "StudyCorgi推出的一款免费的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://studycorgi.com/free-writing-tools/chat-gpt-detector/?ref=ai-bio.cn",
"url": "https://studycorgi.com/",
"categories": "AI内容检测"
},
{
"name": "AlSEO AI Content Detector",
"description": "AlSEO推出的一款AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://app.aiseo.ai/ai-detector/?ref=ai-bio.cn",
"url": "https://app.aiseo.ai/",
"categories": "AI内容检测"
},
{
"name": "Proofig",
"description": "AI驱动的科研图像抄袭检查工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.proofig.com/?ref=ai-bio.cn",
"url": "https://www.proofig.com/",
"categories": "AI内容检测"
},
{
"name": "Writecream AI Content Detector",
"description": "由Writecream推出的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.writecream.com/ai-content-detector/?ref=ai-bio.cn",
"url": "https://www.writecream.com/",
"categories": "AI内容检测"
},
{
"name": "Smodin AI Content Detector",
"description": "一款先进的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://smodin.io/ai-content-detector?ref=ai-bio.cn",
"url": "https://smodin.io/",
"categories": "AI内容检测"
},
{
"name": "Sapling AI Content Detector",
"description": "Sapling.ai推出的一款免费在线AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://sapling.ai/ai-content-detector?ref=ai-bio.cn",
"url": "https://sapling.ai/",
"categories": "AI内容检测"
},
{
"name": "GPT Detector",
"description": "Writefull开发的一款AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://x.writefull.com/gpt-detector/?ref=ai-bio.cn",
"url": "https://x.writefull.com/",
"categories": "AI内容检测"
},
{
"name": "AI Content Detector",
"description": "Write推出的一款AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://writer.com/ai-content-detector/?ref=ai-bio.cn",
"url": "https://writer.com/",
"categories": "AI内容检测"
},
{
"name": "Originality.AI",
"description": "AI驱动的内容质量检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://originality.ai/?ref=ai-bio.cn",
"url": "https://originality.ai/",
"categories": "AI内容检测"
},
{
"name": "Copyleaks",
"description": "一个基于AI的内容检测平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://copyleaks.com/?ref=ai-bio.cn",
"url": "https://copyleaks.com/",
"categories": "AI内容检测"
},
{
"name": "Winston AI",
"description": "一款行业领先的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gowinston.ai/?ref=ai-bio.cn",
"url": "https://gowinston.ai/",
"categories": "AI内容检测"
},
{
"name": "CheckforAI",
"description": "一款由Uphold.ai开发的AI内容检测工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://checkforai.com/?ref=ai-bio.cn",
"url": "https://checkforai.com/",
"categories": "AI内容检测"
},
{
"name": "天壤小白",
"description": "天壤公司开发的一款大模型应用全栈开发平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tianrang.com/?ref=ai-bio.cn",
"url": "https://www.tianrang.com/",
"categories": "AI开发平台"
},
{
"name": "OneThingAI",
"description": "网心科技推出的一站式AI算力云平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://onethingai.com/invitation?code=ik44bRPW",
"url": "https://onethingai.com/",
"categories": "AI开发平台"
},
{
"name": "ImagePrompt.org",
"description": "一个专注于利用AI技术将用户的创意转化为艺术作品的图像提示词",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://imageprompt.org/?ref=ai-bio.cn",
"url": "https://imageprompt.org/",
"categories": "AI提示指令"
},
{
"name": "Public Prompts",
"description": "一个免费、高质量的AI提示词聚合平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://publicprompts.art/?ref=ai-bio.cn",
"url": "https://publicprompts.art/",
"categories": "AI提示指令"
},
{
"name": "Snack Prompt",
"description": "一个创新的人工智能提示社区平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://snackprompt.com/?ref=ai-bio.cn",
"url": "https://snackprompt.com/",
"categories": "AI提示指令"
},
{
"name": "AIPRM",
"description": "一个强大的AI提示管理工具和社区驱动的提示词库",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.aiprm.com/zh/?ref=ai-bio.cn",
"url": "https://www.aiprm.com/",
"categories": "AI提示指令"
},
{
"name": "Visual Prompt Builder",
"description": "一款专为AI艺术生成工具设计的可视化提示构建平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://tools.saxifrage.xyz/prompt?ref=ai-bio.cn",
"url": "https://tools.saxifrage.xyz/",
"categories": "AI提示指令"
},
{
"name": "PromptFolder",
"description": "一款专为AI语言模型设计的提示词管理工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://promptfolder.com/?ref=ai-bio.cn",
"url": "https://promptfolder.com/",
"categories": "AI提示指令"
},
{
"name": "PromptBase",
"description": "一个专门针对AI提示的市场平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://promptbase.com/?ref=ai-bio.cn",
"url": "https://promptbase.com/",
"categories": "AI提示指令"
},
{
"name": "WorkMind.AI",
"description": "一个AI驱动的一体化工作空间",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://workmind.ai/?ref=ai-bio.cn",
"url": "https://workmind.ai/",
"categories": "AI提示指令"
},
{
"name": "prompts.chat",
"description": "一个专注于AI提示词管理和优化的平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://prompts.chat/?ref=ai-bio.cn",
"url": "https://prompts.chat/",
"categories": "AI提示指令"
},
{
"name": "Learning Prompt",
"description": "一个专注于AI学习提示词管理和优化的平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://learningprompt.wiki/?ref=ai-bio.cn",
"url": "https://learningprompt.wiki/",
"categories": "AI提示指令"
},
{
"name": "DeepLearning.AI",
"description": "由人工智能领域的知名专家吴恩达(Andrew Ng)创立的AI学习平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.deeplearning.ai/?ref=ai-bio.cn",
"url": "https://www.deeplearning.ai/",
"categories": "AI学习网站"
},
{
"name": "动手学深度学习",
"description": "一本由多位知名学者编写的开源教材。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zh.d2l.ai/?ref=ai-bio.cn",
"url": "https://zh.d2l.ai/",
"categories": "AI学习网站"
},
{
"name": "Machine Learning Mastery",
"description": "一个专注于机器学习和人工智能的在线学习平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://machinelearningmastery.com/start-here/?ref=ai-bio.cn",
"url": "https://machinelearningmastery.com/",
"categories": "AI学习网站"
},
{
"name": "ML for Beginners",
"description": "微软云倡导者团队开发的一个面向初学者的机器学习课程项目",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://microsoft.github.io/ML-For-Beginners/#/?ref=ai-bio.cn",
"url": "https://microsoft.github.io/",
"categories": "AI学习网站"
},
{
"name": "Kaggle",
"description": "一个数据科学和机器学习社区平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.kaggle.com/?ref=ai-bio.cn",
"url": "https://www.kaggle.com/",
"categories": "AI学习网站"
},
{
"name": "Intro Neural Networks",
"description": "一门专为初学者设计的神经网络入门课程",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://brilliant.org/courses/intro-neural-networks/?ref=ai-bio.cn",
"url": "https://brilliant.org/",
"categories": "AI学习网站"
},
{
"name": "Trancy",
"description": "一款专为语言学习者设计的AI驱动工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://trancy.org/?via=feng-gao",
"url": "https://trancy.org/",
"categories": "AI学习网站"
},
{
"name": "Reading Coach",
"description": "由微软推出的一款免费的AI阅读教练工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://coach.microsoft.com/zh-cn?ref=ai-bio.cn",
"url": "https://coach.microsoft.com/",
"categories": "AI学习网站"
},
{
"name": "飞桨AI Studio",
"description": "百度智能云推出的人工智能学习与实训社区",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aistudio.baidu.com/overview?ref=ai-bio.cn",
"url": "https://aistudio.baidu.com/",
"categories": "AI学习网站"
},
{
"name": "腾讯扣叮",
"description": "腾讯公司推出的面向6至18岁青少年的编程教育平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://coding.qq.com/?ref=ai-bio.cn",
"url": "https://coding.qq.com/",
"categories": "AI学习网站"
},
{
"name": "AI大学堂",
"description": "科大讯飞推出的专注于人工智能领域的在线学习平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.aidaxue.com/?ref=ai-bio.cn",
"url": "https://www.aidaxue.com/",
"categories": "AI学习网站"
},
{
"name": "Google AI",
"description": "Google旗下的一个综合性人工智能平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://developers.google.cn/ai",
"url": "https://developers.google.cn/",
"categories": "AI学习网站"
},
{
"name": "TXYZ",
"description": "一个AI驱动的文献阅读和学术研究辅助平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.txyz.ai/?ref=ai-bio.cn",
"url": "https://www.txyz.ai/",
"categories": "AI学习网站"
},
{
"name": "阿里云人工智能学习路线",
"description": "阿里云提供完整的人工智能学习路线",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://developer.aliyun.com/learning/roadmap/ai",
"url": "https://developer.aliyun.com/",
"categories": "AI学习网站"
},
{
"name": "腾讯混元大模型",
"description": "腾讯自研的多模态通用AI模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://hunyuan.tencent.com",
"url": "https://hunyuan.tencent.com/",
"categories": "AI训练模型"
},
{
"name": "DeepSeek R1T2",
"description": "由德国 TNG Technology Consulting 基于 DeepSeek 原始模型所打造的高效改进版大型语言模型。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://huggingface.co/tngtech/DeepSeek-TNG-R1T2-Chimera",
"url": "https://huggingface.co/",
"categories": "AI训练模型"
},
{
"name": "GPT-4o",
"description": "OpenAI开发的一款先进的多模态语言模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://openai.com/zh-Hans-CN/index/hello-gpt-4o",
"url": "https://openai.com/",
"categories": "AI训练模型"
},
{
"name": "Skywork-Reward-V2",
"description": "昆仑万维团队在 2025 年 7 月发布的第二代开源奖励模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://github.com/SkyworkAI/Skywork-Reward-V2",
"url": "https://github.com/",
"categories": "AI训练模型"
},
{
"name": "Grok",
"description": "xAI公司开发的最新一代人工智能模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://grok.com/?referrer=website?ref=ai-bio.cn",
"url": "https://grok.com/",
"categories": "AI训练模型"
},
{
"name": "商量SenseChat",
"description": "由商汤科技开发的一款基于自研大模型的AI聊天助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chat.sensetime.com/?ref=ai-bio.cn",
"url": "https://chat.sensetime.com/",
"categories": "AI训练模型"
},
{
"name": "书生大模型",
"description": "上海人工智能实验室推出的一系列先进AI模型,旨在推动AI技术在多个领域的应用和发展。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://intern-ai.org.cn/?utm_source=ai-bio.cn",
"url": "https://intern-ai.org.cn/",
"categories": "AI训练模型"
},
{
"name": "悟界",
"description": "北京智源研究院于2025年6月推出的新一代AI大模型系列",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.baai.ac.cn/zh-cn/?utm_source=ai-bio.cn",
"url": "https://www.baai.ac.cn/",
"categories": "AI训练模型"
},
{
"name": "盘古大模型",
"description": "华为云推出的一个超大规模预训练模型,它在自然语言处理、计算机视觉、多模态融合等多个领域展现了卓越的性能",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.huaweicloud.com/product/pangu.html?utm_source=ai-bio.cn",
"url": "https://www.huaweicloud.com/",
"categories": "AI训练模型"
},
{
"name": "日日新",
"description": "一个参数量为 70 亿的智能多模态模型,由商汤科技自主研发",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://platform.sensenova.cn/?utm_source=ai-bio.cn",
"url": "https://platform.sensenova.cn/",
"categories": "AI训练模型"
},
{
"name": "Segment Anything",
"description": "Meta AI开发的一种创新的图像分割AI模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://segment-anything.com/?utm_source=ai-bio.cn",
"url": "https://segment-anything.com/",
"categories": "AI训练模型"
},
{
"name": "Llama 3",
"description": "由Meta AI开发的高性能语言模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.llama.com/?ref=ai-bio.cn",
"url": "https://www.llama.com/",
"categories": "AI训练模型"
},
{
"name": "豆包大模型",
"description": "字节跳动推出的AI大模型家族,包括文本生成、语音识别、语音合成、图像生成和视频生成等",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://volcengine.com/L/5lmu-6TiizA",
"url": "https://volcengine.com/",
"categories": "AI训练模型"
},
{
"name": "Gemma",
"description": "由谷歌开发的一系列轻量级、先进的开放AI模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ai.google.dev/gemma?ref=ai-bio.cn&hl=zh-cn",
"url": "https://ai.google.dev/",
"categories": "AI训练模型"
},
{
"name": "Ollama",
"description": "一个开源工具,专注于简化大型语言模型(LLMs)的本地部署和管理",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ollama.com/?ref=ai-bio.cn",
"url": "https://ollama.com/",
"categories": "AI训练模型"
},
{
"name": "Chatbox AI",
"description": "Chatbox AI是一款开源的AI桌面客户端应用和智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatboxai.app/zh?ref=ai-bio.cn",
"url": "https://chatboxai.app/",
"categories": "AI训练模型"
},
{
"name": "Cherry Studio",
"description": "多模型AI客户端,内置300多个AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cherry-ai.com/?ref=ai-bio.cn",
"url": "https://cherry-ai.com/",
"categories": "AI训练模型"
},
{
"name": "Coze",
"description": "由字节跳动出品的一款AI智能体开发平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/coze-ai-icon.png",
"url": "http://dis.csqixiang.cn/",
"categories": "AI训练模型"
},
{
"name": "lobe",
"description": "Lobe 通过免费且易于使用的工具帮助您训练机器学习模型。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.lobe.ai",
"url": "https://www.lobe.ai/",
"categories": "AI训练模型"
},
{
"name": "Sora",
"description": "Sora是由OpenAI开发的下一代AI视频生成模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://sora.chatgpt.com",
"url": "https://sora.chatgpt.com/",
"categories": "AI训练模型"
},
{
"name": "无阶未来",
"description": "个致力于为广大热爱 AI 应用开发、寻求 AI 工具、炼丹的小伙伴儿们提供便利的 AI 应用与弹性算网平台。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.aivinla.com/register?code=27975652",
"url": "https://www.aivinla.com/",
"categories": "AI训练模型"
},
{
"name": "模力方舟",
"description": "由开源中国(Gitee)推出的针对 AI 应用场景的开源平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/Gitee-AI-logo.png",
"url": "https://ai.gitee.com/",
"categories": "AI训练模型"
},
{
"name": "MMLU",
"description": "一个用于评估语言模型在多任务、多领域知识推理和理解能力的基准测试工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://paperswithcode.com/sota/multi-task-language-understanding-on-mmlu?ref=ai-bio.cn",
"url": "https://paperswithcode.com/",
"categories": "AI模型评测"
},
{
"name": "Open LLM Leaderboard",
"description": "一个由Hugging Face提供的开源大语言模型(LLMs)和聊天机器人性能评测平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard#/?ref=ai-bio.cn",
"url": "https://huggingface.co/",
"categories": "AI模型评测"
},
{
"name": "C-Eval",
"description": "一个由上海交通大学、清华大学和爱丁堡大学联合推出的中文基础模型评估套件",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cevalbenchmark.com/index_zh.html?ref=ai-bio.cn",
"url": "https://cevalbenchmark.com/",
"categories": "AI模型评测"
},
{
"name": "FlagEval",
"description": "北京智源人工智能研究院推出的大模型评测体系及开放平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://flageval.baai.ac.cn/#/home?ref=ai-bio.cn",
"url": "https://flageval.baai.ac.cn/",
"categories": "AI模型评测"
},
{
"name": "SuperCLUE",
"description": "中文通用大模型综合性测评基准",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.cluebenchmarks.com/static/superclue.html?ref=ai-bio.cn",
"url": "https://www.cluebenchmarks.com/",
"categories": "AI模型评测"
},
{
"name": "AGI-Eval",
"description": "一个AI大模型评测社区",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/02/AGI-Eval-logo.png",
"url": "https://agi-eval.cn/",
"categories": "AI模型评测"
},
{
"name": "CMMLU",
"description": "一个专门为评估语言模型在中文语境下的知识和推理能力而设计的综合性评估基准",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/02/cmmlu-benchmark-icon.png",
"url": "https://github.com/",
"categories": "AI模型评测"
},
{
"name": "MMBench",
"description": "由OpenCompass社区开发的多模态基准测试工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://mmbench.opencompass.org.cn/home?ref=ai-bio.cn",
"url": "https://mmbench.opencompass.org.cn/",
"categories": "AI模型评测"
},
{
"name": "Helm Lite",
"description": "斯坦福大学CRFM团队开发的一个轻量级语言模型评估基准",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://crfm.stanford.edu/helm/lite/latest/?ref=ai-bio.cn",
"url": "https://crfm.stanford.edu/",
"categories": "AI模型评测"
},
{
"name": "Chatbot Arena",
"description": "是一个基于人类偏好评估AI聊天机器人性能的开放平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://lmarena.ai/?ref=ai-bio.cn",
"url": "https://lmarena.ai/",
"categories": "AI模型评测"
},
{
"name": "H2O Eval Studio",
"description": "由H2O.ai开发的一款企业级AI模型评估平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://h2o.ai/platform/enterprise-h2ogpte/eval-studio/?ref=ai-bio.cn",
"url": "https://h2o.ai/",
"categories": "AI模型评测"
},
{
"name": "PubMedQA",
"description": "一个用于生物医学研究问题回答的数据集",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/04/1713891424-pubmedqa-icon.png",
"url": "https://pubmedqa.github.io/",
"categories": "AI模型评测"
},
{
"name": "AI Ping",
"description": "一款集大模型评测、统一API调用与智能路由于一体的开发者级AI聚合平台。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url= https://aiping.cn/#?channel_partner_code=UAOWEQ8X",
"url": "https://aiping.cn/",
"categories": "AI模型评测"
},
{
"name": "腾讯智影",
"description": "全流程AI视频创作与智能剪辑平台解析",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zenvideo.qq.com",
"url": "https://zenvideo.qq.com/",
"categories": "AI视频工具"
},
{
"name": "有言AI",
"description": "一站式AI视频创作,1200+免费3D数字人",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.youyan3d.com/login/?utm_source=zhanwaidaoliu&utm_campaign=zwj&utm_content=aibio&from=aibio",
"url": "https://www.youyan3d.com/",
"categories": "AI视频工具"
},
{
"name": "JoggAI",
"description": "一款AI数字人工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.jogg.ai/?utm_source=ai-bio.cn",
"url": "https://www.jogg.ai/",
"categories": "AI视频工具"
},
{
"name": "必火AI",
"description": "一款国产AI数字人工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.bihuoai.com/workspace/welcome?inviteCode=laogao",
"url": "https://www.bihuoai.com/",
"categories": "AI视频工具"
},
{
"name": "Pippit AI",
"description": "由字节跳动旗下产品 CapCut 推出的智能内容创作平台,专为电商和营销场景设计",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pippit.capcut.com/?utm_source=ai-bio.cn",
"url": "https://pippit.capcut.com/",
"categories": "AI视频工具"
},
{
"name": "即创",
"description": "抖音推出的一站式AI智能创作平台,专为电商领域的视频、图文和直播内容创作提供服务",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aic.oceanengine.com/?ref=ai-bio.cn",
"url": "https://aic.oceanengine.com/",
"categories": "AI视频工具"
},
{
"name": "Joypix",
"description": "一款专注于数字人和语音合成的 AI 创作工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/JoyPix-logo.png",
"url": "https://www.joypix.ai/",
"categories": "AI视频工具"
},
{
"name": "妙播",
"description": "腾讯广告推出的 AI 直播电商解决方案",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/05/intelligent-live-logo.png",
"url": "https://admuse.qq.com/",
"categories": "AI视频工具"
},
{
"name": "HeyGen",
"description": "专业的AI数字人视频生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.heygen.com/?ref=ai-bio.cn",
"url": "https://www.heygen.com/",
"categories": "AI视频工具"
},
{
"name": "蝉镜",
"description": "中文数字人视频创作神器",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.chanjing.cc/refc/?type=hzBuy&id=9Hv1gx4_3TCtZ4W0XQSixWuCBkXNZk_D5PqPGZoA9ow",
"url": "https://www.chanjing.cc/",
"categories": "AI视频工具"
},
{
"name": "飞影数字人",
"description": "AI数字人创作平台,支持克隆你的数字人分身",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://hifly.cc/p/pRDFa4xZInDT2BOH",
"url": "https://hifly.cc/",
"categories": "AI视频工具"
},
{
"name": "秒创",
"description": "是基于秒创AIGC引擎的智能AI内容生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aigc.yizhentv.com/invite/register.html?inviteCode=V8995X59EVGHW1",
"url": "https://aigc.yizhentv.com/",
"categories": "AI视频工具"
},
{
"name": "D-ID",
"description": "一个领先的AI视频生成平台,专注于利用先进的AI技术将静态图像和文本转化为逼真的数字人物视频。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.d-id.com/?ref=ai-bio.cn",
"url": "https://www.d-id.com/",
"categories": "AI视频工具"
},
{
"name": "鬼手剪辑GhostCut",
"description": "AI视频剪辑工具,用以提升创作效率",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cn.jollytoday.com",
"url": "https://cn.jollytoday.com/",
"categories": "AI视频工具"
},
{
"name": "HitPaw Watermark Remover",
"description": "AI 一键去水印,视频与图片通用",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hitpaw.com/remove-watermark.html",
"url": "https://www.hitpaw.com/",
"categories": "AI视频工具"
},
{
"name": "擦擦视频去字幕",
"description": "专业视频字幕去除工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/08/微信图片_2025-08-21_174300_730.jpg",
"url": "https://www.cacavideo.com/",
"categories": "AI视频工具"
},
{
"name": "OpusClip",
"description": "一款创新的AI视频剪辑工具,专为视频创作者和编辑人员设计",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.opus.pro/?utm_source=ai-bio.cn",
"url": "https://www.opus.pro/",
"categories": "AI视频工具"
},
{
"name": "Captions",
"description": "一款由人工智能驱动的视频创作和编辑工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.captions.ai/?ref=ai-bio.cn",
"url": "https://www.captions.ai/",
"categories": "AI视频工具"
},
{
"name": "蜜蜂剪辑",
"description": "一款功能强大且操作简单的视频剪辑软件,支持AI去水印功能",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://beecut.cn/online-video-editor/?ref=ai-bio.cn",
"url": "https://beecut.cn/",
"categories": "AI视频工具"
},
{
"name": "Topaz Labs",
"description": "提供一系列基于AI的图像和视频增强工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.topazlabs.com/?ref=ai-bio.cn",
"url": "https://www.topazlabs.com/",
"categories": "AI视频工具"
},
{
"name": "自动剪辑神器",
"description": "一款国产的自动剪辑神器",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://autocut.video",
"url": "https://autocut.video/",
"categories": "AI视频工具"
},
{
"name": "Rask",
"description": "款领先的AI视频本地化和配音工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://rask.ai/?ref=ai-bio.cn",
"url": "https://rask.ai/",
"categories": "AI视频工具"
},
{
"name": "声动视界",
"description": "一个专注于视频翻译、视频配音、语音克隆、短视频脚本生成和智能字幕的AI平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://soundviewai.com/invitation?inviteCode=H8PI8OFN3&from=aibio",
"url": "https://soundviewai.com/",
"categories": "AI视频工具"
},
{
"name": "剪映AI",
"description": "智能视频剪辑与创作者必备工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/09/剪映APP-logo.webp",
"url": "https://ai-bio.cn/",
"categories": "AI视频工具"
},
{
"name": "Happyscribe",
"description": "AI语音转写与字幕生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://happyscribe.cello.so/teIK2fJA6zr",
"url": "https://happyscribe.cello.so/",
"categories": "AI视频工具"
},
{
"name": "RunningHub",
"description": "云端 ComfyUI AI 创作与工作流平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.runninghub.cn/?inviteCode=ny6knjck",
"url": "https://www.runninghub.cn/",
"categories": "AI视频工具"
},
{
"name": "Veo3",
"description": "谷歌发布的新一代视频生成模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://deepmind.google/models/veo?utm_source=ai-bio.cn",
"url": "https://deepmind.google/",
"categories": "AI视频工具"
},
{
"name": "绘想",
"description": "百度推出的 AI 视频创作平台,基于百度自研的视频生成模型 MuseSteamer,能够帮助用户快速生成高质量的视频内容。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://huixiang.baidu.com/?utm_source=ai-bio.cn",
"url": "https://huixiang.baidu.com/",
"categories": "AI视频工具"
},
{
"name": "Pollo AI",
"description": "一款由新加坡公司HIX.AI开发的多模态AI创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pollo.ai/invitation-landing?invite_code=3sU9tT",
"url": "https://pollo.ai/",
"categories": "AI视频工具"
},
{
"name": "海螺AI",
"description": "上海稀宇科技有限公司(MiniMax)推出的一款基于自研多模态大语言模型的AI智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://hailuoai.com",
"url": "https://hailuoai.com/",
"categories": "AI视频工具"
},
{
"name": "智小象",
"description": "多模态AI创作与数字人生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hidreamai.com/?invitationcode=tc9rov7pw",
"url": "https://www.hidreamai.com/",
"categories": "AI视频工具"
},
{
"name": "速推 AIGC",
"description": "一款由应势科技打造的 AI 内容创作平台,旨在为用户提供更加全面、高效的 AI 创作体验",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.51aigc.cc/#/home?user_id=260695",
"url": "https://www.51aigc.cc/",
"categories": "AI视频工具"
},
{
"name": "Sora",
"description": "Sora是由OpenAI开发的下一代AI视频生成模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://sora.chatgpt.com",
"url": "https://sora.chatgpt.com/",
"categories": "AI视频工具"
},
{
"name": "巨日禄AI",
"description": "一款强大的文本转视频生成工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/06/1719027092-logo.ico",
"url": "https://ai.jurilu.com/",
"categories": "AI视频工具"
},
{
"name": "Moki",
"description": "美图公司推出的一款 AI 短片创作工具,旨在通过先进的 AI 技术简化视频创作流程。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.moki.cn/?utm_source=ai-bio.cn",
"url": "https://www.moki.cn/",
"categories": "AI视频工具"
},
{
"name": "Wonder Dynamics",
"description": "一款旨在简化 3D 角色和视觉效果制作流程的 AI 工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://wonderdynamics.com/?utm_source=ai-bio.cn",
"url": "https://wonderdynamics.com/",
"categories": "AI视频工具"
},
{
"name": "腾讯混元AI视频",
"description": "腾讯公司推出的一款基于AI技术的视频生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://video.hunyuan.tencent.com/?ref=ai-bio.cn",
"url": "https://video.hunyuan.tencent.com/",
"categories": "AI视频工具"
},
{
"name": "Tripo AI",
"description": "由VAST团队推出的一款在线人工智能驱动的3D建模工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tripo3d.ai/app?invite_code=4YTOYE",
"url": "https://www.tripo3d.ai/",
"categories": "AI视频工具"
},
{
"name": "笔灵AI小说",
"description": "长篇自动续写与多角色智能创作助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ibiling.cn/novel-workbench?from=bionovel",
"url": "https://ibiling.cn/",
"categories": "AI写作工具"
},
{
"name": "链企AI",
"description": "首个AI商业搜索引擎和招标采购信息推荐平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://biaoshu.lianqiai.cn/?inviteCode=BIDT57wD7",
"url": "https://biaoshu.lianqiai.cn/",
"categories": "AI写作工具"
},
{
"name": "小黑 OmniBox",
"description": "解析全网内容 秒变文本生产力",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/10/OmniBox-icon-1.jpg",
"url": "https://www.omnibox.pro/",
"categories": "AI写作工具"
},
{
"name": "猫眼课题宝",
"description": "一款智能选题与高质量标书生成助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.myketi.com/ai-topic-release?passageCode=ai-bio.cn",
"url": "https://www.myketi.com/",
"categories": "AI写作工具"
},
{
"name": "Refly",
"description": "全球首个开源Vibe Workflow平台,提供自由画布、多线程对话与知识库写作流程",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/07/Refly-logo.png",
"url": "https://refly.ai/",
"categories": "AI写作工具"
},
{
"name": "笔目鱼",
"description": "一款集学科翻译,学科润色,改写,SCI高分例句,插入参考文献和资料库功能管理为一体的云端英文论文写作器。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.bmysci.com/?channelCode=aibiocn",
"url": "https://www.bmysci.com/",
"categories": "AI写作工具"
},
{
"name": "66AI论文",
"description": "一款专业的AI论文写作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.66paper.cn/AI_A38D5E0",
"url": "https://www.66paper.cn/",
"categories": "AI写作工具"
},
{
"name": "巧文书",
"description": "AI智能标书撰写工具,高效生成企业方案",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/11/巧文书.jpg",
"url": "https://qiaowenshu.cn/",
"categories": "AI写作工具"
},
{
"name": "讯飞文书",
"description": "是基于讯飞星火大模型进行文书数据定制训练,面向文书写作群体推出的一款AI材料写作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gw.iflydocs.com/?from=AIjihe43",
"url": "https://gw.iflydocs.com/",
"categories": "AI写作工具"
},
{
"name": "讯飞绘文",
"description": "一站式AIGC内容运营平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://turbodesk.xfyun.cn/?channelid=aitool44",
"url": "https://turbodesk.xfyun.cn/",
"categories": "AI写作工具"
},
{
"name": "星月写作",
"description": "一款由国内团队开发的人工智能写作助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://xingyuexiezuo.com/?inviter=54183#/register",
"url": "https://xingyuexiezuo.com/",
"categories": "AI写作工具"
},
{
"name": "蛙蛙写作",
"description": "由杭州波形智能科技有限公司(AIWaves)开发的一款人工智能写作助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://wawawriter.com/app/?utm_source=aibio",
"url": "https://wawawriter.com/",
"categories": "AI写作工具"
},
{
"name": "NovelAI",
"description": "面向长篇小说与连续文本创作的 AI 写作辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://novelai.net",
"url": "https://novelai.net/",
"categories": "AI写作工具"
},
{
"name": "墨狐AI",
"description": "由北京云泥科技推出的一款专为网文小说作者设计的AI写作助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://inkfox-ai.com/#/home?invitation_code=nYyOAp",
"url": "https://inkfox-ai.com/",
"categories": "AI写作工具"
},
{
"name": "彩云小梦",
"description": "一款由彩云科技开发的智能写作 AI 助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiaomengai.com/?utm_source=ai-bio.cn",
"url": "https://www.xiaomengai.com/",
"categories": "AI写作工具"
},
{
"name": "笔启 AI 论文",
"description": "一款由国内开发团队推出的专注于学术写作的 AI 工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/05/微信图片_2025-05-19_164241_079.png",
"url": "https://www.biqiai.cn/",
"categories": "AI写作工具"
},
{
"name": "茅茅虫论文写作",
"description": "一站式AI论文写作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://mymmc.cn/?fromId=7kjlsk43",
"url": "https://mymmc.cn/",
"categories": "AI写作工具"
},
{
"name": "范文喵",
"description": "针对大学生的AI写作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ai.wolian.chat/openmao/#/?inviteCode=1795664007768576002",
"url": "https://ai.wolian.chat/",
"categories": "AI写作工具"
},
{
"name": "稿易AI论文",
"description": "一款专业的AI论文写作助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://gaoyiai.com/?ref=ai-bio.cn",
"url": "https://gaoyiai.com/",
"categories": "AI写作工具"
},
{
"name": "NotebookLM",
"description": "一款基于资料自动生成洞察的AI笔记助手。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://notebooklm.google",
"url": "https://notebooklm.google/",
"categories": "AI写作工具"
},
{
"name": "小鱼AI写作",
"description": "小鱼AI写作是什么 小鱼AI写作...",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xiaoyuxiezuo.com/AI_A38D5E0",
"url": "https://www.xiaoyuxiezuo.com/",
"categories": "AI写作工具"
},
{
"name": "天工AI",
"description": "昆仑万维开发的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.tiangong.cn/?ref=ai-bio.cn",
"url": "https://www.tiangong.cn/",
"categories": "AI写作工具"
},
{
"name": "Writesonic",
"description": "一款AI写作、撰写SEO文案和聊天机器人的工具集",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://writesonic.com?fpr=feng55",
"url": "https://writesonic.com/",
"categories": "AI写作工具"
},
{
"name": "松果AI写作",
"description": "一款专为写作设计的智能工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://songguoai.com/?ref=ai-bio.cn",
"url": "https://songguoai.com/",
"categories": "AI写作工具"
},
{
"name": "创一AI",
"description": "一款专业的 AI 短视频脚本创作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.creatifyone.com?invite-code=KkfQ",
"url": "https://www.creatifyone.com/",
"categories": "AI写作工具"
},
{
"name": "火山写作",
"description": "字节跳动旗下一款免费的中英文写作纠错和润色工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.writingo.net/invitation?key=85528%24qg%26qgY",
"url": "https://ai-bio.cn/",
"categories": "AI写作工具"
},
{
"name": "文状元",
"description": "一款由国内团队开发的AI写作工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/wenzhuangyuan-logo.png",
"url": "https://www.wenzhuangyuan.cn/",
"categories": "AI写作工具"
},
{
"name": "Copy.ai",
"description": "AI写作工具,支持多语言内容生成与营销文案创作。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.copy.ai/?utm_source=ai-bio.cn",
"url": "https://www.copy.ai/",
"categories": "AI写作工具"
},
{
"name": "Mark Copy AI",
"description": "一款专注于内容创作的 AI 工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.markcopy.ai/?utm_source=ai-bio.cn",
"url": "https://www.markcopy.ai/",
"categories": "AI写作工具"
},
{
"name": "Jasper",
"description": "AI写作助手, 生成SEO文章内容, 管理品牌语调",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.jasper.ai/?utm_source=ai-bio.cn",
"url": "https://www.jasper.ai/",
"categories": "AI写作工具"
},
{
"name": "多种草AI",
"description": "专为小红书等社交媒体平台设计的免费在线AI创作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://duozhongcao.com/?utm_source=ai-bio.cn",
"url": "https://duozhongcao.com/",
"categories": "AI写作工具"
},
{
"name": "AISEO",
"description": "一款基于人工智能技术的 SEO 写作助手,旨在帮助用户快速生成高质量、SEO 优化的内容",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aiseo.ai/?utm_source=ai-bio.cn",
"url": "https://aiseo.ai/",
"categories": "AI写作工具"
},
{
"name": "QuillBot",
"description": "一款基于人工智能的写作辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://try.quillbot.com/vbfz1jw4dhz1",
"url": "https://try.quillbot.com/",
"categories": "AI写作工具"
},
{
"name": "橙篇",
"description": "由百度文库发布的一款AI长文理解和内容创作工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/chengpian-icon.png",
"url": "https://cp.baidu.com/",
"categories": "AI写作工具"
},
{
"name": "Grammary",
"description": "一款由AI驱动的英语语法纠正和校对工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.grammarly.com",
"url": "https://www.grammarly.com/",
"categories": "AI写作工具"
},
{
"name": "Yaara.ai",
"description": "一款采用人工智能技术的内容生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.yaara.ai",
"url": "https://www.yaara.ai/",
"categories": "AI写作工具"
},
{
"name": "悟智写作",
"description": "一款全面的AI写作辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.wuz.com.cn/?ref=ai-bio.cn",
"url": "https://www.wuz.com.cn/",
"categories": "AI写作工具"
},
{
"name": "易撰",
"description": "新媒体AI内容创作工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.yizhuan5.com",
"url": "https://www.yizhuan5.com/",
"categories": "AI写作工具"
},
{
"name": "秘塔写作猫",
"description": "AI写作、改写、翻译及朗读",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://xiezuocat.com/?utm_source=ai-bio.cn",
"url": "https://xiezuocat.com/",
"categories": "AI写作工具"
},
{
"name": "Paperpal",
"description": "AI论文润色与论文检测平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/05/1716813819-paperpal-icon.png",
"url": "https://www.editage.cn/",
"categories": "AI写作工具"
},
{
"name": "Copysmith",
"description": "利用AI为电商团队提供高质量SEO文案",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://copysmith.ai/?ref=ai-bio.cn",
"url": "https://copysmith.ai/",
"categories": "AI写作工具"
},
{
"name": "炼丹家AI",
"description": "一款集成了AI对话和AI绘画的智能工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.liandanjia.com/inviteCode/hlEiL3Qx",
"url": "https://www.liandanjia.com/",
"categories": "AI写作工具"
},
{
"name": "智谱清影",
"description": "智谱AI推出的一款先进的人工智能视频生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatglm.cn/video?lang=zh?ref=ai-bio.cn",
"url": "https://chatglm.cn/",
"categories": "AI视频工具"
},
{
"name": "Animated Drawings",
"description": "由Meta团队开发的一款动画AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://sketch.metademolab.com/canvas?ref=ai-bio.cn",
"url": "https://sketch.metademolab.com/",
"categories": "AI视频工具"
},
{
"name": "Immersity AI",
"description": "一款将2D图像和视频转换成3D视觉效果的AI平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.immersity.ai/?ref=ai-bio.cn",
"url": "https://www.immersity.ai/",
"categories": "AI视频工具"
},
{
"name": "Genmo",
"description": "一款生成视频、图片和动画的AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.genmo.ai/?ref=ai-bio.cn",
"url": "https://www.genmo.ai/",
"categories": "AI视频工具"
},
{
"name": "Morph Studio",
"description": "一款高质量的AI文本转视频工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.morphstudio.com/?ref=ai-bio.cn",
"url": "https://www.morphstudio.com/",
"categories": "AI视频工具"
},
{
"name": "Pixverse",
"description": "一款免费的高质量AI视频生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pixverse.ai/?ref=ai-bio.cn",
"url": "https://pixverse.ai/",
"categories": "AI视频工具"
},
{
"name": "Motionshop",
"description": "一款AI替换视频人物的工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.modelscope.cn/studios/Damo_XR_Lab/motionshop/summary",
"url": "https://www.modelscope.cn/",
"categories": "AI视频工具"
},
{
"name": "通义万相",
"description": "阿里云通义大模型旗下的AI创意作画与视频生成平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/tongyi-aliyun-icon.png",
"url": "https://tongyi.aliyun.com/",
"categories": "AI视频工具"
},
{
"name": "白日梦",
"description": "一款全新的文生视频类AIGC创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aibrm.com/signup?code=r5xngulzd",
"url": "https://aibrm.com/",
"categories": "AI视频工具"
},
{
"name": "Dia",
"description": "智能AI浏览器助力高效信息获取",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.diabrowser.com",
"url": "https://www.diabrowser.com/",
"categories": "AI搜索引擎"
},
{
"name": "Semantic Scholar",
"description": "由艾伦人工智能研究所(Allen Institute for AI)开发的一款免费AI驱动的科研工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.semanticscholar.org/?utm_source=ai-bio.cn",
"url": "https://www.semanticscholar.org/",
"categories": "AI搜索引擎"
},
{
"name": "Perplexity",
"description": "一款利用大型语言模型和搜索引擎的AI搜索引擎。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.perplexity.ai/?utm_source=ai-bio.cn",
"url": "https://www.perplexity.ai/",
"categories": "AI搜索引擎"
},
{
"name": "Miku AI",
"description": "一个AI驱动的搜索平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hellomiku.com/?ref=ai-bio.cn",
"url": "https://www.hellomiku.com/",
"categories": "AI搜索引擎"
},
{
"name": "Reddo",
"description": "一款全球产品信息AI搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.reddo.cloud/?ref=ai-bio.cn",
"url": "https://www.reddo.cloud/",
"categories": "AI搜索引擎"
},
{
"name": "链企AI",
"description": "首个AI商业搜索引擎和招标采购信息推荐平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://biaoshu.lianqiai.cn/?inviteCode=BIDT57wD7",
"url": "https://biaoshu.lianqiai.cn/",
"categories": "AI搜索引擎"
},
{
"name": "开搜AI",
"description": "一款免费的AI问答搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://kaisouai.com/?ref=ai-bio.cn",
"url": "https://kaisouai.com/",
"categories": "AI搜索引擎"
},
{
"name": "博查AI搜索",
"description": "国内首个支持多模型的AI搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://bochaai.com/?ref=ai-bio.cn",
"url": "https://bochaai.com/",
"categories": "AI搜索引擎"
},
{
"name": "心流",
"description": "阿里巴巴推出的一款AI搜索助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://iflow.cn/?ref=ai-bio.cn",
"url": "https://iflow.cn/",
"categories": "AI搜索引擎"
},
{
"name": "百度AI探索版",
"description": "百度推出的一款深度AI搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chat.baidu.com/?ref=ai-bio.cn",
"url": "https://chat.baidu.com/",
"categories": "AI搜索引擎"
},
{
"name": "知乎直答",
"description": "知乎推出的一款基于AI的搜索引擎,直达问题答案",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zhida.zhihu.com/?ref=ai-bio.cn",
"url": "https://zhida.zhihu.com/",
"categories": "AI搜索引擎"
},
{
"name": "纳米搜索",
"description": "由360公司推出的一款多模态内容创作引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://bot.n.cn/?ref=ai-bio.cn",
"url": "https://bot.n.cn/",
"categories": "AI搜索引擎"
},
{
"name": "智谱清言插件",
"description": "ChatGLM & AutoGLM, 工作学习 AI 助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/01/zhipu-ai-chatglm-icon.png",
"url": "https://new-front.chatglm.cn/",
"categories": "AI搜索引擎"
},
{
"name": "秘塔AI搜索",
"description": "由秘塔科技推出的一款AI搜索引擎",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://metaso.cn/?ref=ai-bio.cn",
"url": "https://metaso.cn/",
"categories": "AI搜索引擎"
},
{
"name": "通义万相",
"description": "阿里云通义大模型旗下的AI创意作画与视频生成平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/tongyi-aliyun-icon.png",
"url": "https://tongyi.aliyun.com/",
"categories": "AI图像工具"
},
{
"name": "Stability AI",
"description": "一家总部位于英国伦敦的全球化AI研究型企业,专注于开发开源的生成式AI模型,涵盖图像、语言、音频、视频、3D和生物学等多个领域",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://stability.ai/?utm_source=ai-bio.cn",
"url": "https://stability.ai/",
"categories": "AI图像工具"
},
{
"name": "RunningHub",
"description": "云端 ComfyUI AI 创作与工作流平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.runninghub.cn/?inviteCode=ny6knjck",
"url": "https://www.runninghub.cn/",
"categories": "AI图像工具"
},
{
"name": "ComfyUI",
"description": "可视化AI工作流与Stable Diffusion深度控制工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.comfy.org",
"url": "https://www.comfy.org/",
"categories": "AI图像工具"
},
{
"name": "奇域AI",
"description": "专注于国风审美与中式艺术创作的AI绘画工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.qiyuai.net/apps/met/login?invitationCode=IPBVNB",
"url": "https://www.qiyuai.net/",
"categories": "AI图像工具"
},
{
"name": "造梦日记",
"description": "一款 AI 绘画工具,用户输入文字描述,就能生成对应的画作",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://zmrj.art/?utm_source=ai-bio.cn",
"url": "https://zmrj.art/",
"categories": "AI图像工具"
},
{
"name": "Pollo AI",
"description": "一款由新加坡公司HIX.AI开发的多模态AI创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pollo.ai/invitation-landing?invite_code=3sU9tT",
"url": "https://pollo.ai/",
"categories": "AI图像工具"
},
{
"name": "DreamStudio AI",
"description": "由Stability AI开发的一款人工智能文本到图像生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://dreamstudio.ai/?utm_source=ai-bio.cn",
"url": "https://dreamstudio.ai/",
"categories": "AI图像工具"
},
{
"name": "无界AI",
"description": "一款生成式图片AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.wujieai.com/?ref=ai-bio.cn",
"url": "https://www.wujieai.com/",
"categories": "AI图像工具"
},
{
"name": "智小象",
"description": "多模态AI创作与数字人生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hidreamai.com/?invitationcode=tc9rov7pw",
"url": "https://www.hidreamai.com/",
"categories": "AI图像工具"
},
{
"name": "秒画",
"description": "商汤科技推出的一款AI绘画工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://miaohua.sensetime.com/inspiration?invite_code=90PQ3O0Xp",
"url": "https://miaohua.sensetime.com/",
"categories": "AI图像工具"
},
{
"name": "Wan",
"description": "由阿里巴巴推出的AI内容创作平台,专注于AI绘画和AI视频生成。",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/favicon.jpg",
"url": "https://wan.video/",
"categories": "AI图像工具"
},
{
"name": "千鹿AI",
"description": "一款专为设计师和内容创作者打造的智能图像处理平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/qianlu-logo2.png",
"url": "https://qianlu.cc/",
"categories": "AI图像工具"
},
{
"name": "星流AI",
"description": "LiblibAI平台推出的一站式AI图像生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.xingliu.art/?ref=ai-bio.cn",
"url": "https://www.xingliu.art/",
"categories": "AI图像工具"
},
{
"name": "秒创",
"description": "是基于秒创AIGC引擎的智能AI内容生成平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aigc.yizhentv.com/invite/register.html?inviteCode=V8995X59EVGHW1",
"url": "https://aigc.yizhentv.com/",
"categories": "AI图像工具"
},
{
"name": "妙思",
"description": "一款创新的 AI 绘图工具,它能够帮助用户根据图片生成高质量的 AI 绘图提示词",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/05/admuse-logo.png",
"url": "https://admuse.qq.com/",
"categories": "AI图像工具"
},
{
"name": "绘蛙",
"description": "阿里巴巴集团推出的一款AI电商营销工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.ihuiwa.com/invite?huiwaInviteCode=SRV3HL",
"url": "https://www.ihuiwa.com/",
"categories": "AI图像工具"
},
{
"name": "匠紫AI",
"description": "一站式的AI设计平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://jiangziai.com/?ref=ai-bio.cn",
"url": "https://jiangziai.com/",
"categories": "AI图像工具"
},
{
"name": "BigJPG",
"description": "AI无损放大与清晰度优化工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://bigjpg.com",
"url": "https://bigjpg.com/",
"categories": "AI图像工具"
},
{
"name": "百度网盘 AI 修图",
"description": "由百度开发的一款基于人工智能技术的照片修图工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pan.baidu.com/aiphoto/?utm_source=ai-bio.cn",
"url": "https://pan.baidu.com/",
"categories": "AI图像工具"
},
{
"name": "GoProd",
"description": "由Icons8推出的一款专为Mac用户设计的图像处理软件,集成了智能背景移除和无损图片放大的功能。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://icons8.com/goprod?ref=ai-bio.cn",
"url": "https://icons8.com/",
"categories": "AI图像工具"
},
{
"name": "Pixelhunter",
"description": "适用于社交媒体的免费 AI 图像调整器",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pixelhunter.io",
"url": "https://pixelhunter.io/",
"categories": "AI图像工具"
},
{
"name": "Upscayl",
"description": "免费开源的AI图片无损放大工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.upscayl.org/?refer=ai-bio.cn",
"url": "https://www.upscayl.org/",
"categories": "AI图像工具"
},
{
"name": "PhotoRoom",
"description": "一款基于AI照片编辑工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.photoroom.com/?ref=ai-bio.cn",
"url": "https://www.photoroom.com/",
"categories": "AI图像工具"
},
{
"name": "PicWish",
"description": "一款基于AI技术的智能图像处理工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://picwish.com/?ref=ai-bio.cn",
"url": "https://picwish.com/",
"categories": "AI图像工具"
},
{
"name": "美图云修",
"description": "AI 人像后期云端修图工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://yunxiu.meitu.com",
"url": "https://yunxiu.meitu.com/",
"categories": "AI图像工具"
},
{
"name": "Playground AI",
"description": "AI绘图和修图工具,每日可免费生成50张图片",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://playgroundai.com/?ref=ai-bio.cn",
"url": "https://playgroundai.com/",
"categories": "AI图像工具"
},
{
"name": "Ribbet.ai",
"description": "免费的AI 照片多功能编辑工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ribbet.ai",
"url": "https://ribbet.ai/",
"categories": "AI图像工具"
},
{
"name": "Topaz Labs",
"description": "提供一系列基于AI的图像和视频增强工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.topazlabs.com/?ref=ai-bio.cn",
"url": "https://www.topazlabs.com/",
"categories": "AI图像工具"
},
{
"name": "WatermarkRemover.io",
"description": "AI自动去水印 - 批量高保真输出与快速预览",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.watermarkremover.io",
"url": "https://www.watermarkremover.io/",
"categories": "AI图像工具"
},
{
"name": "HitPaw Watermark Remover",
"description": "AI 一键去水印,视频与图片通用",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.hitpaw.com/remove-watermark.html",
"url": "https://www.hitpaw.com/",
"categories": "AI图像工具"
},
{
"name": "Magic Eraser",
"description": "一键智能擦除杂物与水印",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://magicstudio.com/zh/magiceraser",
"url": "https://magicstudio.com/",
"categories": "AI图像工具"
},
{
"name": "腾讯混元3D",
"description": "新一代智能3D建模与生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://3d.hunyuan.tencent.com",
"url": "https://3d.hunyuan.tencent.com/",
"categories": "AI图像工具"
},
{
"name": "燕雀光年",
"description": "一款基于 AI 技术生成logo的在线设计平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/06/favicon.ico",
"url": "https://www.yanqueai.com/",
"categories": "AI图像工具"
},
{
"name": "LinkFox AI",
"description": "一款专门为跨境电商量身定制的智能工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ai.linkfox.com/?channel=Becca_aibio",
"url": "https://ai.linkfox.com/",
"categories": "AI图像工具"
},
{
"name": "光子AI",
"description": "AI电商服饰商拍平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.photonaiclub.com/index?invitationType=register&inviterId=7328241868114231444&agentChannel=28",
"url": "https://www.photonaiclub.com/",
"categories": "AI图像工具"
},
{
"name": "创客贴AI",
"description": "由创客贴公司开发的一款智能设计在线协作平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/chuangkit-aiart-icon.png",
"url": "https://aiart.chuangkit.com/",
"categories": "AI图像工具"
},
{
"name": "炼丹家AI",
"description": "一款集成了AI对话和AI绘画的智能工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.liandanjia.com/inviteCode/hlEiL3Qx",
"url": "https://www.liandanjia.com/",
"categories": "AI图像工具"
},
{
"name": "哩布哩布AI▪LiblibAI",
"description": "国内领先的AI图像创作平台和模型分享社区",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://liblibai.paluai.com/aibio",
"url": "https://liblibai.paluai.com/",
"categories": "AI图像工具"
},
{
"name": "A1.art",
"description": "一个用于构建和发现 AI 艺术应用的平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://a1.art/app?invitation=WONRHJJ",
"url": "https://a1.art/",
"categories": "AI图像工具"
},
{
"name": "Civitai",
"description": "一个专注于AI图像绘画和艺术作品创作和分享的在线平台和社区",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://civitai.com/?ref=ai-bio.cn",
"url": "https://civitai.com/",
"categories": "AI图像工具"
},
{
"name": "Freepik AI Image Generator",
"description": "一款由Freepik推出的在线AI图片生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.freepik.com/ai/image-generator?ref=ai-bio.cn",
"url": "https://www.freepik.com/",
"categories": "AI图像工具"
},
{
"name": "Midjourney",
"description": "AI图像和插画生成工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/04/1712739665-faviconV2.png",
"url": "https://www.mxai.cn/",
"categories": "AI图像工具"
},
{
"name": "Remove.bg",
"description": "只需单击一下,即可在 5 秒内自动删除图像背景",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.remove.bg/r/Rq5VVxjQLker5RoZyBJ21Mmz?locale=zh",
"url": "https://www.remove.bg/",
"categories": "AI图像工具"
},
{
"name": "Ideogram",
"description": "一款免费使用的 AI 工具,可以生成逼真的图像、海报、徽标等",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ideogram.ai/?refer=ai-bio.cn",
"url": "https://ideogram.ai/",
"categories": "AI图像工具"
},
{
"name": "超能画布",
"description": "专注人像摄影的AI创意生成平台",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/06/1718505353-photasy-icon.png",
"url": "https://photo.baidu.com/",
"categories": "AI图像工具"
},
{
"name": "Bing Image Creator",
"description": "通过简单的文本输入利用AI技术,快速生成高质量图像的在线工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cn.bing.com/images/create",
"url": "https://cn.bing.com/",
"categories": "AI图像工具"
},
{
"name": "潮际好麦",
"description": "一站式智能商拍平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://marketing.k-fashionshop.com?relCode=M8OGL4EO",
"url": "https://marketing.k-fashionshop.com/",
"categories": "AI图像工具"
},
{
"name": "PhotoStudio AI",
"description": "模特AI商品图及视频一键生成",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://psai.cn/?refer=ai-bio.cn",
"url": "https://psai.cn/",
"categories": "AI图像工具"
},
{
"name": "Pippit AI",
"description": "由字节跳动旗下产品 CapCut 推出的智能内容创作平台,专为电商和营销场景设计",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://pippit.capcut.com/?utm_source=ai-bio.cn",
"url": "https://pippit.capcut.com/",
"categories": "AI图像工具"
},
{
"name": "即创",
"description": "抖音推出的一站式AI智能创作平台,专为电商领域的视频、图文和直播内容创作提供服务",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aic.oceanengine.com/?ref=ai-bio.cn",
"url": "https://aic.oceanengine.com/",
"categories": "AI图像工具"
},
{
"name": "美图抠图",
"description": "一键AI去背景与高精度批量处理",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cutout.designkit.com",
"url": "https://cutout.designkit.com/",
"categories": "AI图像工具"
},
{
"name": "Erase.bg",
"description": "一键去背景与批量抠图",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.erase.bg",
"url": "https://www.erase.bg/",
"categories": "AI图像工具"
},
{
"name": "BgSub",
"description": "免注册一键去背景",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://bgsub.cn",
"url": "https://bgsub.cn/",
"categories": "AI图像工具"
},
{
"name": "美图抠图",
"description": "美图秀秀旗下的一键移除背景的在线编辑工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://cutout.x-design.com/?utm_source=ai-bio.cn",
"url": "https://cutout.x-design.com/",
"categories": "AI图像工具"
},
{
"name": "蜜蜂剪辑",
"description": "一款功能强大且操作简单的视频剪辑软件,支持AI去水印功能",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://beecut.cn/online-video-editor/?ref=ai-bio.cn",
"url": "https://beecut.cn/",
"categories": "AI图像工具"
},
{
"name": "Weights",
"description": "一款强大的AI创作工具,它利用先进的人工智能技术,为用户提供了一个多功能的创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.weights.com/zh?ref=ai-bio.cn",
"url": "https://www.weights.com/",
"categories": "AI音频工具"
},
{
"name": "腾讯云AI代码助手",
"description": "腾讯云自研的AI编程提效辅助工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://copilot.tencent.com/?ref=ai-bio.cn",
"url": "https://copilot.tencent.com/",
"categories": "AI编程工具"
},
{
"name": "CodeFuse",
"description": "蚂蚁集团自研的 AI 编程工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/10/codefuse-icon.png",
"url": "https://codefuse.alipay.com/",
"categories": "AI编程工具"
},
{
"name": "豆包MarsCode",
"description": "字节推出的编程助手,基于豆包模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.marscode.cn/?ref=ai-bio.cn",
"url": "https://www.marscode.cn/",
"categories": "AI编程工具"
},
{
"name": "HeyCLI",
"description": "一个在线CLI(命令行界面)生成器,可帮助用户快速创建自定义的命令行界面和交互式命令行工具。",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/04/1713334254-heycli-icon.png",
"url": "https://www.heycli.com/",
"categories": "AI编程工具"
},
{
"name": "灵码 IDE",
"description": "阿里云推出的首个 AI 原生开发环境工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://lingma.aliyun.com/lingma/download?plug=lingmaIde?utm_source=ai-bio.cn",
"url": "https://lingma.aliyun.com/",
"categories": "AI编程工具"
},
{
"name": "MGX",
"description": "一款基于 MetaGPT 框架的 AI 编程工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://mgx.dev/?utm_source=ai-bio.cn",
"url": "https://mgx.dev/",
"categories": "AI编程工具"
},
{
"name": "美间AI",
"description": "一款由群核科技推出的智能设计平台,专注于为电商、营销、教育等领域提供一站式AI设计解决方案。",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.meijian.com/ai?utm_source=ai-bio.cn",
"url": "https://www.meijian.com/",
"categories": "AI设计工具"
},
{
"name": "蚂上有创意",
"description": "一款专注于创意内容生成的人工智能工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/mashangyouchuangyi-logo.png",
"url": "https://idesign.alipay.com/",
"categories": "AI设计工具"
},
{
"name": "比格AI",
"description": "一款在线图片编辑器网站",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/10/bige-website01-副本.png",
"url": "https://www.bigppt.cn/",
"categories": "AI设计工具"
},
{
"name": "Kittl",
"description": "AI平面设计工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.kittl.com/?ref=ai-bio.cn",
"url": "https://www.kittl.com/",
"categories": "AI设计工具"
},
{
"name": "美图设计室",
"description": "一个易于使用的在线设计工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.designkit.com/tools?ref=ai-bio.cn",
"url": "https://www.designkit.com/",
"categories": "AI设计工具"
},
{
"name": "khroma",
"description": "利用 AI 来生成无限的配色方案和调色板",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.khroma.co",
"url": "https://www.khroma.co/",
"categories": "AI设计工具"
},
{
"name": "逗哥配音",
"description": "面向短视频与内容创作的AI文本转语音工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://douge.com/index?from=zeUBBb",
"url": "https://douge.com/",
"categories": "AI音频工具"
},
{
"name": "录咖",
"description": "高效视频录制与创作的智能AI工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://reccloud.cn",
"url": "https://reccloud.cn/",
"categories": "AI音频工具"
},
{
"name": "海螺AI",
"description": "上海稀宇科技有限公司(MiniMax)推出的一款基于自研多模态大语言模型的AI智能助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://hailuoai.com",
"url": "https://hailuoai.com/",
"categories": "AI音频工具"
},
{
"name": "智声云配",
"description": "一款专注于AI配音与语音合成(TTS)的智能工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/03/54422650.png",
"url": "https://app.dubbingx.com/",
"categories": "AI音频工具"
},
{
"name": "ElevenLabs",
"description": "文字转语音和人工智能声音生成器",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://try.elevenlabs.io/5vl1iqyu1qsg",
"url": "https://try.elevenlabs.io/",
"categories": "AI音频工具"
},
{
"name": "SongGeneration",
"description": "腾讯 AI Lab 推出并开源的音乐生成大模型",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://huggingface.co/spaces/tencent/SongGeneration",
"url": "https://huggingface.co/",
"categories": "AI音频工具"
},
{
"name": "魔音工坊",
"description": "一款专业的AI配音工具,可以配出媲美真人的声音",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.moyin.com/?channelCode=AIGJX_20250106",
"url": "https://www.moyin.com/",
"categories": "AI音频工具"
},
{
"name": "Mureka",
"description": "由昆仑万维推出的AI音乐商用创作平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.mureka.ai/home?ref=ai-bio.cn",
"url": "https://www.mureka.ai/",
"categories": "AI音频工具"
},
{
"name": "AnyVoice",
"description": "一款先进的 AI 语音生成平台,提供超真实的文本转语音(TTS)和声音克隆服务",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://anyvoice.net/zh/ai-voice-cloning?ref=ai-bio.cn",
"url": "https://anyvoice.net/",
"categories": "AI音频工具"
},
{
"name": "TTSopenAI",
"description": "一款基于 OpenAI 技术开发的先进文本转语音TTS工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://ttsopenai.com/?ref=ai-bio.cn",
"url": "https://ttsopenai.com/",
"categories": "AI音频工具"
},
{
"name": "Noiz AI",
"description": "一款人工智能语音合成与克隆工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://noiz.ai/landing?ref=ai-bio.cn",
"url": "https://noiz.ai/",
"categories": "AI音频工具"
},
{
"name": "Speechma",
"description": "一款人工智能驱动的文本转语音(TTS)工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://speechma.com",
"url": "https://speechma.com/",
"categories": "AI音频工具"
},
{
"name": "Fish Audio",
"description": "一个专注于音频生成和处理的人工智能平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://fish.audio/zh-CN/?ref=ai-bio.cn",
"url": "https://fish.audio/",
"categories": "AI音频工具"
},
{
"name": "讯飞听见",
"description": "科大讯飞推出的在线AI语音转文字工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.iflyrec.com/zhuanwenzi.html?ref=ai-bio.cn",
"url": "https://www.iflyrec.com/",
"categories": "AI音频工具"
},
{
"name": "刺鸟配音",
"description": "刺鸟科技推出的AI配音工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.icnpy.com/?ref=ai-bio.cn",
"url": "https://www.icnpy.com/",
"categories": "AI音频工具"
},
{
"name": "蓝藻AI",
"description": "云知声旗下的AI配音和声音克隆平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://aigc.unisound.com/home?ref=ai-bio.cn",
"url": "https://aigc.unisound.com/",
"categories": "AI音频工具"
},
{
"name": "BGM猫",
"description": "一款AI音乐生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://bgmcat.com/?ref=ai-bio.cn",
"url": "https://bgmcat.com/",
"categories": "AI音频工具"
},
{
"name": "快转字幕",
"description": "一款基于AI技术的自动化字幕生成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.kzzimu.com/?ref=ai-bio.cn",
"url": "https://www.kzzimu.com/",
"categories": "AI音频工具"
},
{
"name": "悦音配音",
"description": "一款AI智能在线配音语音合成工具",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://yueyin.zhipianbang.com/?ref=ai-bio.cn",
"url": "https://yueyin.zhipianbang.com/",
"categories": "AI音频工具"
},
{
"name": "音虫",
"description": "一款内置AI的数字音频工作站(DAW)软件",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.soundbug.com/?ref=ai-bio.cn",
"url": "https://www.soundbug.com/",
"categories": "AI音频工具"
},
{
"name": "通义听悟",
"description": "阿里云推出的一款用于办公、学习的AI助手",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/01/faviconV2.png",
"url": "https://tingwu.aliyun.com/",
"categories": "AI音频工具"
},
{
"name": "TTSMaker",
"description": "一款强大的在线文本转语音(TTS)工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/01/TTSMaker-website.png",
"url": "https://ttsmaker.cn/",
"categories": "AI音频工具"
},
{
"name": "即梦AI",
"description": "一款AI视觉创作工具",
"icon": "https://ai-bio.cn/wp-content/uploads/2024/12/jimeng-logo-1.png",
"url": "https://dis.csqixiang.cn/",
"categories": "AI视频工具"
},
{
"name": "WellSaid Labs",
"description": "一个提供自然语言生成技术的网站",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://wellsaidlabs.com",
"url": "https://wellsaidlabs.com/",
"categories": "AI音频工具"
},
{
"name": "Stability AI",
"description": "一家总部位于英国伦敦的全球化AI研究型企业,专注于开发开源的生成式AI模型,涵盖图像、语言、音频、视频、3D和生物学等多个领域",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://stability.ai/?utm_source=ai-bio.cn",
"url": "https://stability.ai/",
"categories": "AI音频工具"
},
{
"name": "智谱清言",
"description": "一款支持AI绘画、视频生成、代码编辑、PPT生成等多功能的AI助手",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://chatglm.cn/main/alltoolsdetail?lang=zh?ref=ai-bio.cn",
"url": "https://chatglm.cn/",
"categories": "AI编程工具"
},
{
"name": "码上飞",
"description": "一句话生成应用的AI软件开发平台",
"icon": "https://t3.gstatic.cn/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&size=128&url=https://www.codeflying.net/?source=aigjx&source_id=hot",
"url": "https://www.codeflying.net/",
"categories": "AI编程工具"
},
{
"name": "TRAE编程",
"description": "AI辅助编程,代码自动修复",
"icon": "https://ai-bio.cn/wp-content/uploads/2025/04/微信图片_20250722204858_137.png",
"url": "http://dis.csqixiang.cn/",
"categories": "AI编程工具"
}
]
};
3.admin.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>Ximi 管理后台</title>
<style>
:root { --bg: #f4f6f8; --sidebar-w: 260px; --accent: #2563eb; --border: #e2e8f0; }
body { margin: 0; display: flex; font-family: -apple-system, sans-serif; background: var(--bg); color: #334155; }
/* === 左侧栏菜单 === */
#sidebar { width: var(--sidebar-w); background: #fff; height: 100vh; border-right: 1px solid var(--border); overflow-y: auto; display: flex; flex-direction: column; }
.sidebar-header { padding: 20px; font-size: 18px; font-weight: bold; border-bottom: 1px solid var(--border); color: #0f172a; }
.menu-group { border-bottom: 1px solid #f1f5f9; }
.group-title { padding: 15px 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fafafa; transition: 0.2s; }
.group-title:hover { background: #f1f5f9; }
.menu-sub { padding: 5px 0 10px 0; }
.menu-item { padding: 10px 20px 10px 40px; cursor: pointer; font-size: 14px; margin: 2px 10px; border-radius: 6px; position: relative; }
.menu-item:before { content: "•"; position: absolute; left: 25px; color: #cbd5e1; }
.menu-item:hover { background: #f1f5f9; }
.menu-item.active { background: #dbeafe; color: var(--accent); font-weight: 600; }
.menu-item.active:before { color: var(--accent); }
.menu-new { color: #059669; font-weight: 600; }
.menu-new:before { content: "+"; font-weight: bold; color: #059669; }
/* === 右侧主区域 === */
#main { flex: 1; padding: 40px; overflow-y: auto; height: 100vh; box-sizing: border-box; }
.view-title { font-size: 22px; margin-top: 0; border-bottom: 2px solid var(--border); padding-bottom: 15px; margin-bottom: 25px; color: #1e293b; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.card { background: #fff; padding: 20px; border-radius: 10px; border: 1px solid var(--border); box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.card label { display: block; font-size: 12px; color: #64748b; margin-bottom: 5px; font-weight: 600; }
input, select { padding: 10px; border: 1px solid var(--border); border-radius: 6px; width: 100%; margin-bottom: 15px; box-sizing: border-box; outline: none; }
input:focus, select:focus { border-color: var(--accent); }
.btn-del { background: #fee2e2; color: #ef4444; border: none; padding: 8px 12px; border-radius: 6px; cursor: pointer; font-size: 13px; font-weight: 600; width: 100%; }
.btn-del:hover { background: #fecaca; }
.btn-save { position: fixed; bottom: 30px; right: 30px; background: #059669; color: #fff; padding: 15px 30px; border-radius: 50px; cursor: pointer; border: none; font-size: 16px; font-weight: bold; box-shadow: 0 4px 12px rgba(5,150,105,0.3); transition: 0.3s; z-index: 100; }
.btn-save:hover { background: #047857; transform: translateY(-2px); }
li {
padding: 10px;
}
</style>
</head>
<body>
<div id="sidebar">
<div class="sidebar-header">后台管理中心</div>
<div id="sidebar-content"></div>
</div>
<div id="main">
<h1 class="view-title" id="view-title">👈 请在左侧选择要管理的功能</h1>
<div id="view-content">
<ol>
<li>本程序是一个基于HTML和JavaScript的简单链接管理工具,适合个人当网址收藏夹!</li>
<li>使用方法非常简单,只需编辑当前目录下的 <code>link-data.js</code> 文件,按照示例格式添加或修改链接数据即可。</li>
<li>后台数据存储在 <code>link-data.js</code> 文件中,可直接运行 <code>admin.html</code> 文件进行可视化编辑,也可以使用文本编辑器直接修改 <code>link-data.js</code> 文件。</li>
<li>数据格式为一个数组,每个元素是一个对象,包含 <code>name</code>(链接名称)、<code>url</code>(链接地址)、<code>icon</code>(链接图标URL)、<code>cat</code>(链接分类)等属性。</li>
<li>链接分类 <code>cat</code> 可以自定义,同一分类的链接会在主页面显示在一起,方便管理和访问。</li>
<li>主页 <code>index.html</code> 会根据 <code>link-data.js</code> 文件中的数据动态生成链接列表,点击链接即可访问对应的网址。</li>
<li>修改数据保存前请记得备份当前目录下的 <code>link-data.js</code> 文件,以免数据丢失。</li>
<li>保存时请选择替换当前目录下的 <code>link-data.js</code> 文件。</li>
<li>新建链接填写信息时建议最后选择分类信息,因为分类内容是动态显示的。选择分类后,新建的链接会自动跳转到对应分类下,点击对应分类即可显示,并不是消失了。</li>
<li>如需放置在公共网络环境中,只需上传主页 <code>index.html</code> 和配置文件 <code>link-data.js</code> 即可。</li>
<li>作者:希米</li>
<li>原文:https://www.ximi.me/post-6040.html</li>
<li>最后更新:2026-06-03</li>
</ol>
</div>
</div>
<button class="btn-save" onclick="saveToFile()">📥 保存所有更改 (link-date.js)</button>
<script src="link-date.js"></script>
<script>
// 1. 初始化数据与状态
let categories = navData.categories || [];
let links = navData.links || [];
links.forEach(l => { if(!l.id) l.id = Date.now() + Math.random(); });
// 折叠状态控制(默认全展开)
let menuState = { cat: true, link: true };
// 当前视图位置
let current = { type: '', id: '' };
function toggleMenu(menu) {
menuState[menu] = !menuState[menu];
renderSidebar();
}
// 2. 路由控制:处理各种点击跳转
function view(type, id) {
if (type === 'cat_new') {
let newName = '新分类_' + Math.floor(Math.random() * 1000);
categories.push({ name: newName, icon: '' });
current = { type: 'cat_edit', id: newName };
} else if (type === 'link_new') {
if(categories.length === 0) return alert("请先新建一个分类!");
let defaultCat = categories[0].name;
links.unshift({ id: Date.now() + Math.random(), name: '', url: '', categories: defaultCat, description: '', icon: '' });
current = { type: 'link_cat', id: defaultCat };
} else {
current = { type, id };
}
renderSidebar();
renderContent();
}
// 3. 渲染左侧菜单
function renderSidebar() {
const sidebar = document.getElementById('sidebar-content');
let catHtml = `<div class="menu-item menu-new" onclick="view('cat_new')">新建分类</div>`;
categories.forEach(c => {
let active = (current.type === 'cat_edit' && current.id === c.name) ? 'active' : '';
catHtml += `<div class="menu-item ${active}" onclick="view('cat_edit', '${c.name}')">${c.name}</div>`;
});
let linkHtml = `<div class="menu-item menu-new" onclick="view('link_new')">新建链接</div>`;
categories.forEach(c => {
let active = (current.type === 'link_cat' && current.id === c.name) ? 'active' : '';
linkHtml += `<div class="menu-item ${active}" onclick="view('link_cat', '${c.name}')">${c.name}</div>`;
});
sidebar.innerHTML = `
<div class="menu-group">
<div class="group-title" onclick="toggleMenu('cat')">
<span>分类管理</span> <span>${menuState.cat ? '▼' : '▶'}</span>
</div>
<div class="menu-sub" style="display: ${menuState.cat ? 'block' : 'none'}">${catHtml}</div>
</div>
<div class="menu-group">
<div class="group-title" onclick="toggleMenu('link')">
<span>链接管理</span> <span>${menuState.link ? '▼' : '▶'}</span>
</div>
<div class="menu-sub" style="display: ${menuState.link ? 'block' : 'none'}">${linkHtml}</div>
</div>
`;
}
// 4. 渲染右侧内容区
function renderContent() {
const content = document.getElementById('view-content');
const title = document.getElementById('view-title');
if (current.type === 'cat_edit') {
const c = categories.find(x => x.name === current.id);
if (!c) return;
title.innerText = "正在编辑分类: " + c.name;
content.innerHTML = `
<div class="card" style="max-width: 500px;">
<label>分类名称(修改将自动同步所属链接)</label>
<input value="${c.name}" onchange="updateCatName('${c.name}', this.value)" placeholder="输入分类名称">
<label>分类图标 URL</label>
<input value="${c.icon}" oninput="updateCatIcon('${c.name}', this.value)" placeholder="输入图标图片链接">
<br><br>
<button class="btn-del" onclick="deleteCat('${c.name}')">🗑️ 删除该分类 (包含内部所有链接)</button>
</div>
`;
} else if (current.type === 'link_cat') {
title.innerText = "分类下的链接列表: " + current.id;
const filtered = links.filter(l => l.categories === current.id);
if (filtered.length === 0) {
content.innerHTML = `<p style="color:#94a3b8;">该分类下暂无链接,请点击左侧 "+ 新建链接" 添加。</p>`;
return;
}
content.innerHTML = `<div class="card-grid">` + filtered.map(l => `
<div class="card">
<label>应用名称</label>
<input value="${l.name}" oninput="updateLink('${l.id}', 'name', this.value)" placeholder="例如: 百度">
<label>链接地址 URL</label>
<input value="${l.url}" oninput="updateLink('${l.id}', 'url', this.value)" placeholder="https://...">
<label>图标 URL</label>
<input value="${l.icon}" oninput="updateLink('${l.id}', 'icon', this.value)" placeholder="图标图片地址">
<label>所属分类</label>
<select onchange="updateLink('${l.id}', 'categories', this.value)">
${categories.map(cat => `<option value="${cat.name}" ${l.categories === cat.name ? 'selected' : ''}>${cat.name}</option>`).join('')}
</select>
<label>一句话描述</label>
<input value="${l.description}" oninput="updateLink('${l.id}', 'description', this.value)" placeholder="例如: 最好用的搜索引擎">
<button class="btn-del" onclick="deleteLink('${l.id}')">🗑️ 删除此链接</button>
</div>`).join('') + `</div>`;
}
}
// 5. 数据核心更新逻辑 (重要:不丢失光标,实时保存到内存)
function updateLink(id, key, value) {
const link = links.find(l => l.id == id);
if (link) {
link[key] = value;
// 如果修改了分类,当前视图不再包含该链接,需重新渲染以从该列表中移除
if(key === 'categories') renderContent();
}
}
function updateCatName(oldName, newName) {
if (!newName || newName.trim() === '') return alert("分类名不能为空!");
const cat = categories.find(c => c.name === oldName);
if (cat) {
cat.name = newName;
// 自动同步所有属于旧分类的链接
links.forEach(l => { if (l.categories === oldName) l.categories = newName; });
current.id = newName;
renderSidebar();
renderContent();
}
}
function updateCatIcon(name, newIcon) {
const cat = categories.find(c => c.name === name);
if (cat) cat.icon = newIcon;
}
// 6. 删除逻辑
function deleteCat(name) {
if (confirm(`⚠️ 危险操作:确定要删除分类【${name}】吗?\n该分类下的所有链接也会被一并清空!`)) {
categories = categories.filter(c => c.name !== name);
links = links.filter(l => l.categories !== name);
current = { type: '', id: '' };
renderSidebar();
document.getElementById('view-title').innerText = "👈 请在左侧选择要管理的功能";
document.getElementById('view-content').innerHTML = "";
}
}
function deleteLink(id) {
if (confirm("确定要删除这条链接吗?")) {
links = links.filter(l => l.id != id);
renderContent();
}
}
// 7. 保存文件 (清除开发用的临时ID,保持JSON纯净)
function saveToFile() {
// 清理空数据
const exportCats = categories.filter(c => c.name.trim() !== "").map(c => ({ name: c.name, icon: c.icon }));
const exportLinks = links.filter(l => l.name.trim() !== "").map(l => {
const { id, ...rest } = l; // 移除临时id
return rest;
});
const dataToSave = { categories: exportCats, links: exportLinks };
const content = "const navData = " + JSON.stringify(dataToSave, null, 4) + ";";
const blob = new Blob([content], { type: 'text/javascript' });
const a = document.createElement('a');
a.href = URL.createObjectURL(blob);
a.download = 'link-date.js';
a.click();
}
// 初次加载渲染
renderSidebar();
</script>
</body>
</html>
4.使用说明
## 前言
1.本程序旨在提供一个轻量级本地网址收藏夹,方便集中管理和快速访问常用网站。
2.最初使用 HTML + JSON 存储数据,但受浏览器本地安全限制,改为 HTML + JavaScript 配置文件。
3.由于前端 JavaScript 在本地环境中无法直接修改文件,因此采用了一种折中的方法:
4.读取现有配置数据并进行可视化编辑; 保存时自动生成新的配置文件; 用户手动替换原有配置文件即可完成数据更新。
5.这种方式无需数据库、无需服务器,也无需安装任何额外环境,下载后即可离线使用。
6.如需部署到公网,只需上传新的配置文件,或根据需要开发后台实现在线管理。
7.本项目追求简单、开箱即用,适合个人网址整理。
## 预览
网址: https://link.hhqq.net/
前台:

后台:

## 说明
1.本程序是一个基于HTML和JavaScript的简单链接管理工具,适合个人当网址收藏夹!
2.使用方法非常简单,只需编辑当前目录下的link-data.js文件,按照示例格式添加或修改链接数据即可。
3.后台数据存储在link-data.js文件中,可直接运行admin.html文件进行可视化编辑,也可以使用文本编辑器直接修改link-data.js文件。
4.数据格式为一个数组,每个元素是一个对象,包含name(链接名称),url(链接地址),icon(链接图标URL),cat(链接分类)等属性。
5.链接分类cat可以自定义,同一分类的链接会在主页面显示在一起,方便管理和访问。
6.主页index.html会根据link-data.js文件中的数据动态生成链接列表,点击链接即可访问对应的网址。
7.修改数据保存前请记得备份当前目录下link-data.js文件哦,以免数据丢失。
8.保存时请选择替换当前目录下link-data.js文件
9.新建链接时候填写信息时候建议最后选择分类信息,因为是动态显示分类下的信息,选择分类后新建的链接会自动跳转到对应分类下,点击对应分类会显示出来,并不是消失了!
10.如需放置在公共网络环境中,只需放置主页index.html和配置link-data.js文件即可。
## 下载
1.请前往原文下载最新版
## 关于
1.作者:希米
2.原文:https://www.ximi.me/post-6040.html
3.最后更新:2026-06-03
域名市场
域名载入中...