master fe6773e86a70 cached
10 files
368.9 KB
160.4k tokens
4 symbols
1 requests
Download .txt
Showing preview only (380K chars total). Download the full file or copy to clipboard to get everything.
Repository: 1c7/chinese-independent-developer
Branch: master
Commit: fe6773e86a70
Files: 10
Total size: 368.9 KB

Directory structure:
gitextract_hzlummj9/

├── .github/
│   ├── MAINTAINER.md
│   ├── issue_template.md
│   ├── scripts/
│   │   └── process_item.py
│   └── workflows/
│       └── process_list.yml
├── .gitignore
├── README-Game.md
├── README-Programmer-Edition.md
├── README.md
├── _config.yml
└── pyproject.toml

================================================
FILE CONTENTS
================================================

================================================
FILE: .github/MAINTAINER.md
================================================
## 介绍 `.github/` 文件夹的用途

## 概括
用户在 https://github.com/1c7/chinese-independent-developer/issues/160 提交评论。   
大部分情况下,格式是不符合规范的(可以理解)  
需要用程序自动化处理,减少我的时间投入。

## 流程
1. 我(1c7)在用户提交的评论点击 🚀 图标(表情)
1. 触发 Github Action 执行(手动触发 或 定时执行(每 6 小时)
1. Github Action 会触发 .github/scripts/process_item.py
2. 查找 "当前日期-3天" 开始(这个时间点往后) 所有标记 🚀 图标 的评论
3. 处理格式,创建 Pull Request。
4. 给评论新增一个  🎉 图标(意思是"处理完成")
7. 回复这条评论:感谢提交,已添加。

我只需要修改 PR 然后 merge 就行。  

一句话概括:我点击 🚀 标签,然后 PR 会自动创建,我只需要 merge PR。我大概点击 3 次左右就可以了(如果介绍语有改进空间,我还得改一下文字,然后才 merge)

## 本地运行(为了开发调试)
```bash
cp .env.example .env

uv sync

uv run .github/scripts/process_item.py
```


================================================
FILE: .github/issue_template.md
================================================
格式如下:
```
#### 名字 - [Github]()
* :white_check_mark: [网站/App名]():一句话说明(尽量保持在一行内) - [更多介绍]()
```

如果你的项目还在开发,或者已经关闭了,可以用:
```
:clock8:
:x:
```

已关闭的项目最好附上一个更多介绍,里面讲解为什么关闭了,学到了什么


================================================
FILE: .github/scripts/process_item.py
================================================
import os
import re
import datetime
from github import Github 
from openai import OpenAI
from datetime import datetime, timedelta, timezone

# ================= 配置区 =================
PAT_TOKEN = os.getenv("PAT_TOKEN")  # GitHub Personal Access Token
API_KEY = os.getenv("LLM_API_KEY")  # LLM API 密钥(如 DeepSeek、OpenAI)
BASE_URL = os.getenv("LLM_BASE_URL", "https://api.openai.com/v1")  # LLM API 基础 URL
REPO_NAME = "1c7/chinese-independent-developer"  # GitHub 仓库名称
ISSUE_NUMBER = 160  # 用于收集项目提交的 Issue 编号
ADMIN_HANDLE = "1c7"  # 管理员 GitHub 用户名
TRIGGER_EMOJI = "rocket"  # 触发处理的表情符号 🚀
SUCCESS_EMOJI = "hooray"  # 处理成功的表情符号 🎉
# ==========================================

def check_environment():
    """检查必需的环境变量是否存在"""
    if not PAT_TOKEN:
        raise ValueError("❌ 缺少环境变量 PAT_TOKEN!请设置 GitHub Personal Access Token。")
    if not API_KEY:
        raise ValueError("❌ 缺少环境变量 LLM_API_KEY!请设置 LLM API Key。")

    print(f"✅ 环境变量检查通过")
    print(f"   - PAT_TOKEN: {'*' * 10}{PAT_TOKEN[-4:]}")
    print(f"   - API_KEY: {'*' * 10}{API_KEY[-4:]}")
    print(f"   - BASE_URL: {BASE_URL}\n")

def remove_quote_blocks(text: str) -> str:
    """移除 GitHub 引用回复块"""
    lines = text.split('\n')
    cleaned_lines = []
    for line in lines:
        if not line.lstrip().startswith('>'):
            cleaned_lines.append(line)
    result = '\n'.join(cleaned_lines)
    result = re.sub(r'\n{3,}', '\n\n', result)
    return result.strip()

def get_ai_project_line(raw_text):
    """让 AI 提取项目名称、链接和描述(支持多个产品)"""
    client = OpenAI(api_key=API_KEY, base_url=BASE_URL)
    prompt = f"""
任务:将用户的项目介绍转换为 Markdown 格式。

要求:
1. 识别文本中的所有产品/项目(可能有多个)
2. 每个项目占一行
3. 在文字的开头,去掉"一款、一个、完全免费、高效、简洁、强大、快速、好用、安全"等营销废话
4. 严禁使用加粗格式(不要使用 **)
5. 将产品名称从文字的后面提升到最前面
6. 每行格式:* :white_check_mark: [项目名](网址):用途描述

示例 1:
输入:https://example.com:一款基于 AI 的高效视频生成网站
输出:* :white_check_mark: [example.com](https://example.com):AI 视频生成网站

示例 2:
输入:[MyApp](https://myapp.com) 完全免费的强大工具,帮助用户管理任务
输出:* :white_check_mark: [MyApp](https://myapp.com):任务管理工具

示例 3(多个项目):
输入:
[ProductA](https://a.com):AI 绘画工具
[ProductB](https://b.com):AI 写作助手
输出:
* :white_check_mark: [ProductA](https://a.com):AI 绘画工具
* :white_check_mark: [ProductB](https://b.com):AI 写作助手

待处理文本:
{raw_text}
"""
    response = client.chat.completions.create(
        model="deepseek-chat",
        messages=[{"role": "user", "content": prompt}],
        temperature=0.3
    )
    return response.choices[0].message.content.strip()

def main():
    # 检查环境变量
    check_environment()

    g = Github(PAT_TOKEN)
    repo = g.get_repo(REPO_NAME)
    issue = repo.get_issue(ISSUE_NUMBER)

    time_threshold = datetime.now(timezone.utc) - timedelta(days=3)
    comments = issue.get_comments(since=time_threshold)

    # ===== 阶段 1:收集待处理评论 =====
    pending_comments = []
    formatted_entries = []

    for comment in comments:
        reactions = comment.get_reactions()
        has_trigger = any(r.content == TRIGGER_EMOJI and r.user.login == ADMIN_HANDLE for r in reactions)
        has_success = any(r.content == SUCCESS_EMOJI for r in reactions)

        if has_trigger and not has_success:
            print(f"\n{'='*60}")
            print(f"处理评论:\n{comment.body}")
            print(f"\n评论链接:{comment.html_url}")
            print(f"{'='*60}\n")

            cleaned_body = remove_quote_blocks(comment.body)

            # 判断用户是否自带了 Header
            header_match = re.search(r'^####\s+.*', cleaned_body, re.MULTILINE)

            if header_match:
                header_line = header_match.group(0).strip()
                body_for_ai = cleaned_body.replace(header_line, "").strip()
                print(f"检测到用户自带 Header: {header_line}")
            else:
                author_name = comment.user.login
                author_url = comment.user.html_url
                header_line = f"#### {author_name} - [Github]({author_url})"
                body_for_ai = cleaned_body
                print(f"自动生成 Header: {header_line}")

            # AI 处理项目详情行
            project_line = get_ai_project_line(body_for_ai)
            formatted_entry = f"{header_line}\n{project_line}"

            pending_comments.append(comment)
            formatted_entries.append(formatted_entry)

    # ===== 阶段 2:批量提交 =====
    if not pending_comments:
        print("无待处理评论")
        return

    print(f"\n共收集 {len(pending_comments)} 个待处理评论")

    # 更新 README
    content = repo.get_contents("README.md", ref="master")
    readme_text = content.decoded_content.decode("utf-8")

    today_str = datetime.now().strftime("%Y 年 %-m 月 %-d 号添加")
    date_header = f"### {today_str}"

    if date_header not in readme_text:
        new_readme = readme_text.replace("3. 项目列表\n", f"3. 项目列表\n\n{date_header}\n")
    else:
        new_readme = readme_text

    # 插入所有条目(用两个换行分隔)
    insertion_point = new_readme.find(date_header) + len(date_header)
    all_entries = "\n\n".join(formatted_entries)
    final_readme = new_readme[:insertion_point] + "\n\n" + all_entries + new_readme[insertion_point:]

    # 创建分支
    branch_name = f"batch-add-projects-{datetime.now().strftime('%Y%m%d-%H%M%S')}"
    base = repo.get_branch("master")

    try:
        repo.get_git_ref(f"heads/{branch_name}").delete()
    except:
        pass

    repo.create_git_ref(ref=f"refs/heads/{branch_name}", sha=base.commit.sha)
    repo.update_file(
        "README.md",
        f"docs: batch add {len(pending_comments)} projects",
        final_readme,
        content.sha,
        branch=branch_name
    )

    # 构建 PR body
    comment_links = "\n".join([
        f"- [{c.user.login}]({c.html_url})"
        for c in pending_comments
    ])

    formatted_list = "\n\n".join([
        f"### {i+1}. {formatted_entries[i]}"
        for i in range(len(formatted_entries))
    ])

    pr_body = f"""批量添加 {len(pending_comments)} 个项目

## 原始评论链接
{comment_links}

## 格式化结果
{formatted_list}

---
自动生成,触发机制:用户 {ADMIN_HANDLE} 点击 🚀
"""

    pr = repo.create_pull(
        title=f"新增项目:批量添加 {len(pending_comments)} 个项目",
        body=pr_body,
        head=branch_name,
        base="master"
    )

    print(f"\n✅ PR 创建成功:{pr.html_url}")

    # 标记所有评论(添加 🎉 表情)
    for comment in pending_comments:
        comment.create_reaction(SUCCESS_EMOJI)

    # 创建一条评论提及所有用户
    user_mentions = " ".join([f"@{c.user.login}" for c in pending_comments])
    reply_body = f"{user_mentions} 感谢提交,已添加!\n\n PR 链接:{pr.html_url}"
    issue.create_comment(reply_body)

    print(f"\n✅ 已标记所有 {len(pending_comments)} 个评论")

if __name__ == "__main__":
    main()

================================================
FILE: .github/workflows/process_list.yml
================================================
name: 提交项目(每 24 小时运行一次,晚上 00:00)
on:
  schedule:
    - cron: '0 16 * * *'  # 每天 UTC 16:00 运行(北京时间 00:00)
  workflow_dispatch:      # 支持手动触发

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout code
        uses: actions/checkout@v6.0.1

      - name: Setup Python
        uses: actions/setup-python@v6.1.0
        with:
          python-version: '3.13' 

      - name: Install dependencies
        run: |
          pip install PyGithub openai

      - name: Run script
        env:
          PAT_TOKEN: ${{ secrets.PAT_TOKEN }}
          LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
          # 如果你用的不是 OpenAI 原生接口,可以设置这个环境变量,否则默认使用 OpenAI
          LLM_BASE_URL: "https://api.deepseek.com"
        run: python .github/scripts/process_item.py

================================================
FILE: .gitignore
================================================
.env

================================================
FILE: README-Game.md
================================================
## 游戏版面 - 中国独立开发者项目列表

本版面放的都是游戏,起始于2025年1月4号


### 2026 年 2 月 4 号添加
#### Shawn (北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com)
* :white_check_mark: [Arcraiders.website](https://arcraiders.website):ARC raiders 游戏工具网站,功能比较丰富全面 - [更多介绍](https://arcraiders.website/quests)

### 2026 年 1 月 10 号添加

#### 290713469 - [Github](https://github.com/290713469)
* :white_check_mark: [Star Rupture Calculator](https://starrupture-tools.com/):Stream 游戏 Star Rupture 工具网站

### 2026 年 1 月 7 号添加
#### 290713469 - [Github](https://github.com/290713469)
* :white_check_mark: [Obsessed Trace Calculator](https://obsessedtrace.com/):Stream 游戏 Obsessed Trace 工具网站

### 2026 年 1 月 4 号添加
#### Ivanvolt(武汉) - [博客](https://ivanvolt.com),[Github](https://github.com/ivanvolt-labs)
* :white_check_mark: [Square Face Generator](https://squarefacegenerator.co):生成方脸头像
* :white_check_mark: [UB Games](https://ubgames.co):免费浏览器游戏
* :white_check_mark: [Wenda Treatment](https://wendatreatment.com):暗黑音乐之旅

### 2026 年 1 月 3 号添加
#### 290713469 - [Github](https://github.com/290713469)
* :white_check_mark: [Anime Fighting Simulator Calculator](https://anime-fighting-simulator.com):Roblox Anime Fighting Simulator游戏工具

### 2026 年 1 月 2 号添加
* :white_check_mark: [PokePath-TD](https://play-pokepath-td.online/):PokePath-TD一款海外爆火的宝可梦塔防游戏,在9 条不同的路线上抵御一波又一波的敌人,失败了也可以累积资源和升级宝可梦成员。

### 2025 年 12 月 27 号添加
* :white_check_mark: [Riddle School](https://riddle-school.online/):Riddle School 是一款以校园为背景的解谜冒险游戏,采用简单直观的点击操作方式,适合各类玩家上手。游戏通过一系列环环相扣的谜题,引导玩家不断思考不同道具和场景之间的关系。解谜过程清晰,让人能够专注于推理本身。

### 2025 年 12 月 21 号添加
#### shuiwuhen - [GitHub](https://github.com/290713469)
* :white_check_mark: [Universal Tower Defense Calculator](https://universaltowerdefensecalculator.com):Roblox 游戏 Universal Tower Defense 工具站

### 2025 年 12 月 14 号添加
#### seven(沈阳)
* :white_check_mark: [Pips game](https://pipsgame.dev/): 每日逻辑谜题,你通过纯推理放置多米诺骨牌——无需猜测(Pips Game is a daily logic puzzle where you place dominoes using pure deduction — no guessing)

### 2025 年 12 月 13 号添加
* :white_check_mark: [Duck Duck Clicker](https://duckduckclicker.space/):如果你喜欢轻松的点击游戏,你应该试试Duck Duck Clicker。你只需轻点一只可爱的大鸭子,就可以建立自己的鸭子帝国——超级上瘾,而且有趣得令人惊讶。

### 2025 年 12 月 11 号添加
* :white_check_mark: [No Means Nothing Calculator](https://nomeansnothing.com):Stream No Means Nothing 游戏工具网站

### 2025 年 12 月 9 号添加
#### shuiwuhen - [Github](https://github.com/290713469)
* :white_check_mark: [A.I.L.A Calculator](https://ailagame.com):Stream A.I.L.A 游戏工具网站

### 2025 年 11 月 26 号添加
#### Light(上海) 
* :white_check_mark: [Yes or No Wheel](https://yesornot.net/):Spin the Yes or No Wheel - Get Your Free & Instant Decision - Struggling with a decision? Spin our free Yes or No Wheel for an instant, random answer! It's the simple, fun, and fast way to eliminate hesitation.

#### Carys - [Github](https://github.com/Caron77ai)
* :white_check_mark: [IdleOn Online](https://idleon.online/):免费在线放置类 MMO RPG 游戏,打造角色、击败怪物,离线也能持续进展 - [更多介绍](https://idleon.online/)

### 2025 年 11 月 19 号添加
#### 肥萝卜(南昌) - [网站](https://wheelpage.com/)
* :white_check_mark: [Coin Flip](https://wheelpage.com/coin-flip/):抛硬币 · 用最简单的方式做决定

### 2025 年 11 月 18 号添加
#### levan(深圳) - [Github](https://github.com/L-Evan)
* :white_check_mark: [nokiasnakegame.org](https://nokiasnakegame.org):贪吃蛇游戏站(Free)

### 2025 年 11 月 17 号添加
#### Chaowen(深圳) - [Github](https://github.com/tanchaowen84/ice-breaker-games)
* :white_check_mark: [IceBreakerGames](https://icebreakergame.net):破冰游戏转盘,帮你快速决定聚会选什么破冰游戏,并帮你快速了解和准备对应破冰游戏

### 2025 年 11 月 13 号添加
#### zhang xinke - [Github](https://github.com/zxk1323)
* :white_check_mark: [loldle](https://loldle.lol/):英雄联盟猜谜小游戏

### 2025 年 11 月 5 号添加
#### shuiwuhen - [Github](https://github.com/290713469)
* :white_check_mark: [Dispatch Calculator](https://dispatchcalculator.com):Steam 上 Dispatch 这个游戏的计算器助手,帮助玩家针对不同任务进行分配人员信息。

### 2025 年 10 月 30 号添加
#### dvyutou - [Github](https://github.com/dvyutou)
* :white_check_mark: [Scritchy Scratchy](https://scritchyscratchy.org):Free Online Scratch Card Game | Play Now
* :white_check_mark: [Blue White Flag](https://bluewhiteflag.org):Play Blue Flag White Flag Games Online Free

#### 290713469 - [Github](https://github.com/290713469)
* :white_check_mark: [Anime Last Stand Calculator](https://anime-last-stand.com):Anime Last Stand 游戏计算器,帮助玩家快速做出组队策略。

#### lucen
* :white_check_mark: [Icebreaker Games](https://icebreaker-games.org/zh):破冰游戏:搜索、筛选、按步骤直接开玩。

### 2025 年 10 月 22 号添加
#### 水无痕(杭州) 
* :white_check_mark: [WaHaGameStore](https://wahagamestore.com):在线 HTML 游戏,免登录、免下载

### 2025 年 10 月 21 号添加
#### James(guangzhou) - [Github](https://github.com/sky4366)
* :white_check_mark: [Games Hub](https://www.mangofunplay.com/):HTML5 游戏集合站点
  
### 2025 年 10 月 17 号添加
#### Johnson(上海) - [Github](https://github.com/johnson-eddie)
* :white_check_mark: [PVZ Fusion](https://pvzfusion.io/):  植物大战僵尸的创新粉丝版本,引入革命性的植物融合系统,玩家可以组合经典植物创造强大的混合防御者,提供无限阳光资源和全新战略玩法

### 2025 年 9 月 7 号添加
#### aiinlink
* :white_check_mark: [多人聚会小游戏 bestpartygames](https://www.bestpartygames.net/):多人聚会小游戏网站,可以玩谁是卧底,狼人杀,真心话大冒险等等游戏

### 2025 年 8 月 8 号添加
#### ckfanzhe(深圳)
* :white_check_mark: [Minecraft-Easyserver](https://github.com/ckfanzhe/minecraft-easyserver):Minecraft 游戏的轻量级管理面板,可以通过面板快速下载搭建MC服务器、管理白名单&权限、管理世界&材质资源、日志与命令执行、服务器性能监控,一键搭建MC游戏服务器。

#### Nico(长沙) - [Github](https://github.com/yijianbo), [博客]( https://biofy.cn/nico)
* :white_check_mark: [Wordless](https//wordless.online):类似 Wordle 的在线猜单词 AI 游戏,6次机会猜出英文单词,既能练英语又能动脑子,完全停不下来!也提供了 [Chrome 插件版本](https://chromewebstore.google.com/detail/wordless-game/ejkdnnekbieingpiciajgpedhplafocp)

### 2025 年 8 月 3 号添加
#### Ethan Sunray
* :white_check_mark: [Connections Hint](https://connectionshint.cc/):收集了《纽约时报》Connections 游戏从上线至今每一期的答案和解谜提示,每日更新。

### 2025 年 7 月 24 号添加
#### Eagien(杭州)
* :white_check_mark: [森林中的99个夜晚攻略](https://99nightsintheforest.online):掌握《99个森林之夜》全攻略!提供生存策略、制作秘籍、怪物情报和专家技巧,助你成功度过全部99个夜晚。 - [更多介绍]()

### 2025 年 7 月 14 号添加
#### 刘三(上海)
* :white_check_mark: [Grow a Garden Calculator](https://www.growagardencalculator.quest/):实时计算 Roblox 游戏中水果价值、变异倍率、好友增益等,帮助你快速优化收益! 

### 2025 年 7 月 10 号添加
#### Jsonchao (深圳) - [Github](https://github.com/JsonChao), [博客](https://juejin.cn/user/4318537403878167)
* :white_check_mark: [Sand Blast Block Puzzle](https://sand-blast-block-puzzle.com/):《沙爆方块拼图》是一款创新的沙流物理拼图游戏,融合了经典方块拼图的策略性与沙流模拟的沉浸感。玩家需要在方格中放置三种不同形状的彩色方块,方块落下后会转化为沙流,玩家需巧妙布局,形成同色沙流的完整横线以清除并得分。游戏没有时间限制,适合任何年龄段的玩家,既能放松心情,又能锻炼思维。无需下载,支持离线游戏,随时随地畅玩。

### 2025 年 7 月 3 号添加
#### Jsonchao (深圳) - [Github](https://github.com/JsonChao), [博客](https://juejin.cn/user/4318537403878167)
* :white_check_mark: [growagarden-calculator](https://www.growagarden-calculator.net/):页面精美、功能强大的 《Grow a Garden》 游戏交易 / 攻略工具,在疯狂圈粉 1600 万 + 玩家的 Roblox 神作《Grow a Garden》中,想靠“三秒算账”闯荡菜市?这就是 Grow a Garden Calculator 存在的意义:帮你秒算作物价值、预测突变收益,还附送一整套天气 / 交易 / 攻略工具,专治“不会算、不想算、算得慢”。
* :white_check_mark: [SZ Games](https://sz-games.online/):提供超过 1000 款免费在线游戏的平台,涵盖动作、益智、赛车、模拟等多种类型。无需下载,直接在浏览器中畅玩,支持 PC、手机、平板等多平台设备

### 2025 年 7 月 1 号添加
#### 一箭(杭州) 
* :white_check_mark: [种植花园计算器](https://growagardencalculator.click/):使用“种植花园价值计算器”来规划您的 Roblox 作物,应用金色和彩虹等突变,并在每次收获时增加您的 Sheckles。
* :white_check_mark: [随机游戏生成器](https://randomgame.click): 不知道玩什么游戏?试试我们的随机游戏生成器,一键帮你发现有趣、免费的在线游戏,支持多平台,海量精选游戏等你来玩!

### 2025 年 6 月 2 号添加
#### wenyue(深圳) - [Github](https://github.com/chanmankong)
* :white_check_mark: [无畏契约准星库和生成器](https://valorantcrosshair.org/zh-CN/):无畏契约准星库和生成器,玩家的得力帮手

### 2025 年 5 月 26 号添加
#### aipromptdirectory - [Github](https://github.com/aipromptdirectory)
* :white_check_mark: [mergefellasAI](https://mergefellas.fun/):merge fellas - Italian Brainrot Merge Game 2025

### 2025 年 5 月 4 号添加
#### wang1309(深圳) - [github](https://github.com/wang1309)
* :white_check_mark: [Funny Shooter 2](https://www.funny-shooter2.org/):enjoy unblocked shooting games for free! Dive into exciting gun games with funny shooting action. Perfect for shooter game fans!

### 2025 年 4 月 21 号添加
#### LudwigChan - [github](https://github.com/ludwig-chan)
* :clock8: [sunrise](https://ludwig-chan.github.io/sunrise/): 集养成、经营、回合制、肉鸽、策略于一体的,以饥荒、星铁、牧场物语为原型的一个极简风格的 mud 游戏

### 2025 年 4 月 13 号添加
#### Qiwei - [github](https://github.com/qiweiii)
* :white_check_mark: [Flappy-minimal](https://flappy.buildin.fun/): 极简版 web flappy bird(100% AI 作品),纯娱乐项目,快来玩吧

### 2025 年 4 月 1 号添加
#### zeikia(广州) - [Github](https://github.com/zeikia)
* :white_check_mark: [Kour io](https://kourio.online/):在线FPS游戏网站(免费)

### 2025 年 3 月 29 号添加
#### rain(深圳) - [Github](https://github.com/wang1309)
* :white_check_mark: [shopaholic game](https://shopaholic-game.com/):体验购物的游戏(免费)

### 2025 年 3 月 24 号添加
#### 隋十一(北京) - [Github](https://github.com/Hazards10)
* :white_check_mark: [Car Games Unblocked](https://cargamesunblocked.net/):汽车驾驶类游戏网站

### 2025 年 3 月 5 号添加
#### zoe(武汉) - [Github](https://github.com/dragonsweepers/)
* :white_check_mark: [dragonsweeper](https://dragonsweepers.com):创新型的扫雷游戏,融合了经典FC时代日式角色扮演和现代即时游戏元素

### 2025 年 2 月 28 号添加
#### suwen(广州) - [Github](https://github.com/sprunkicorruptbox3)
* :white_check_mark: [Sprunki Corruptbox 3](https://corrupt-box.net):Sprunki Corruptbox系列游戏MOD网站,可以免费在线玩。

### 2025 年 2 月 23 号添加
#### rain (深圳) - [Github](https://github.com/wang1309/), [博客](https://wang1309.github.io/)
* :white_check_mark: [mewtrix.com](https://mewtrix.com/):全新的益智游戏体验。专注于让玩家能够轻松享受解谜的乐趣,支持多种语言,相比传统的消消乐或俄罗斯方块等经典益智游戏,Mewtrix 引入了创新性的玩法,让您的体验更加丰富有趣。

### 2025 年 2 月 20 号添加
#### 奥利弗(北京) - [Github](https://github.com/Oliverwqcwrw), [博客](https://www.aolifu.org/)
* :white_check_mark: [摸鱼小栈](https://moyu.aolifu.org):小游戏集合 - [更多介绍](https://www.aolifu.org/article/moyu)

### 2025 年 1 月 4 号添加
#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :white_check_mark: [Sprunki Pyramixed](https://sprunkipyramixed.net/):创新的音乐节奏游戏,是 Sprunki 的 MOD

#### 前端小周(郑州) -  [个人主页](https://www.inav.site/)
* :white_check_mark: [情侣飞行棋小程序](https://www.inav.site/static/mp/chess.png):情侣飞行棋 情侣升温小游戏 可自定义棋盘 让你们的感情更进一步的小tips~

#### yangjuzi - [Github](https://github.com/yangjuzi)
* :white_check_mark: [画什么](https://whattodraw.art):从画圆开始,看看你画的圆可以得多少分


================================================
FILE: README-Programmer-Edition.md
================================================
## 中国独立开发者项目列表(程序员版)

[主板面点这里](https://github.com/1c7/chinese-independent-developer/)

**程序员版和主版面的区别**:
* 程序员版:用户是程序员,会用命令行,知道 `npm install` 等。列表里的产品是开源博客/命令行工具等
* 主版面:用户不是程序员,产品是 网站/App/桌面端应用 必须打开即用

<!--
**为什么开这个列表**:
Issue 和 PR 里偶尔有人提交一些不错的东西,但打开一看,不是普通用户能用的东西,
而是要用命令行 `npm install` 以及需要写一些代码。
没法加到主版面里去,不是因为不好,只是因为类型不合。
但是我觉得这些项目也需要曝光度,所以单独开这一个列表。

程序员版开始于 2019 年 4 月 11 号, 主版面开始于 2018 年 3 月
-->

### 2026 年 3 月 10 号添加

#### my19940202(上海) - [Github](https://github.com/my19940202)
* :white_check_mark: [Cursor带我学英语](https://github.com/my19940202/cursor-thinking-stat):本地采集cursor对话英语语料信息,通过可视化方式分析,辅助程序员提升技术英语的学习,辅助写好英语prompt

### 2026 年 3 月 1 号添加
#### @leodenglovescode(北京) - [Github](https://github.com/leodenglovescode), [博客](https://leodeng.dev)
* :white_check_mark: [pm2-webmanager](https://github.com/leodenglovescode/pm2-webmanager):基于HTML和JS的新一代PM2进程管理器,简易上手。A modern, light-weight web manager for all your PM2 processes

### 2026 年 1 月 14 号添加
#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://momei.app/)
* :white_check_mark: [墨梅博客](https://github.com/CaoMeiYouRen/momei):博客平台,专为技术开发者和跨境内容创作者量身定制。专业、高性能、国际化 - [更多介绍](https://docs.momei.app/)

### 2025 年 12 月 2 号添加
#### phishdestroy - [GitHub](https://github.com/phishdestroy)
* :white_check_mark: [Destroylist](https://github.com/phishdestroy/destroylist):Auto-updating phishing blacklist for threat intelligence

### 2025 年 11 月 23 号添加
#### wtechtec(深圳) - [Github](https://github.com/WtecHtec), [博客](https://blogs.xujingyichang.top/)
* :white_check_mark: [web-hooker](https://github.com/WtecHtec/web-hooker):将网页变成可调用的 API

### 2025 年 11 月 3 号添加
#### L1nSn0w(广州) - [Github](https://github.com/lin-snow)
* :white_check_mark: [Ech0](https://github.com/lin-snow/Ech0):新一代开源、自托管、专注思想流动的轻量级联邦发布平台,支持 ActivityPub 协议、PWA、CLI 管理与跨端适配 - [更多介绍](https://echo.soopy.cn)

### 2025 年 9 月 25 号添加
#### KAY53N - [Github](https://github.com/KAY53N/rusty-req)
* :white_check_mark: [Rusty-Req](https://github.com/KAY53N/rusty-req):基于 Rust 和 Python 的高性能异步请求库,适用于需要高吞吐量并发 HTTP 请求的场景。核心并发逻辑使用 Rust 实现,并通过 PyO3 和 maturin 封装为 Python 模块,将 Rust 的性能优势与 Python 的易用性结合。


### 2025 年 9 月 24 号添加
#### hzn6426 - [Github](https://github.com/hzn6426)
- :white_check_mark: [Snapper 权限系统微服务版](https://gitee.com/ifrog/snapper-boot):专注系统数据权限(数据权限、业务权限、列权限),让权限更简单,让数据更安全
- :white_check_mark: [Snapper 权限单机版](https://gitee.com/ifrog/snapper-standalone):专注系统数据权限,让权限更简单,让数据更安全 - [演示地址](https://admin.baomibing.com/user/login) 演示账号 ximen/123456


### 2025 年 9 月 4 号添加
#### ChiruMori(辽宁) - [Github](https://github.com/ChiruMori/EffectMidi)
* :white_check_mark: [EffectMidi](https://github.com/ChiruMori/EffectMidi):PC+开发板控制MIDI键盘灯(需用户自行接线烧录)- [更多介绍](https://mori.plus/archives/effect-midi-01)

### 2025 年 8 月 22 号添加
#### Safe3(武汉)
* :white_check_mark: [南墙-WEB应用防火墙](https://waf.uusec.com):工业级免费、高性能、高扩展,支持 AI 和语义引擎的 Web 应用和 API 安全防护产品
* :white_check_mark: [OpenResty Manager](https://om.uusec.com):现代化、安全、美观的主机管理面板,OpenResty Edge 的开源替代品

### 2025 年 8 月 21 号添加
#### Mao Kaiyue - [Github](https://github.com/MKY508)
* :white_check_mark: [QueryGPT](https://github.com/MKY508/QueryGPT):自然语言数据库查询系统。基于 OpenInterpreter 开发,让非技术人员也能用中文查询数据库。比如问"上个月销售最好的产品是什么",系统会自动执行查询并生成图表。目前在生产环境稳定运行,每天处理上百次查询请求

### 2025 年 8 月 8 号添加
#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd/)
* :white_check_mark: [草梅 Auth](https://github.com/CaoMeiYouRen/caomei-auth):草梅 Auth 是基于 Nuxt 全栈框架的统一登录平台。支持 OAuth2.0 协议,集成邮箱、用户名、手机号、验证码、社交媒体等多种登录注册方式 - [更多介绍](https://auth-docs.cmyr.dev/)

### 2025 年 8 月 8 号添加
#### lizhichao - [Github](https://github.com/lizhichao)
* :white_check_mark: [根据 sql ddl 生成 gorm model](https://gorm.vicsdf.com/):支持 mysql 和 pgsql ,根据 int bigint 自动映射到 go 对应的类型。由浏览器 wasm 执行 可以离线使用

### 2025 年 8 月 4 号添加
#### 何夕2077 (武汉)- [GIthub](https://github.com/justlovemaki) [小宇宙](https://www.xiaoyuzhoufm.com/podcast/683c62b7c1ca9cf575a5030e)
* :white_check_mark: [AIClient-2-API](https://github.com/justlovemaki/AIClient-2-API):模拟Gemini CLI和Kiro 客户端请求,兼容OpenAI API。可每日千次Gemini模型请求, 免费使用Kiro内置Claude模型。通过API轻松接入任何客户端,让AI开发更高效!

### 2025 年 7 月 26 号添加
#### Ch3nyang(南京) - [Github](https://github.com/wcy-dt), [博客](https://blog.ch3nyang.top/)
* :white_check_mark: [PongHub](https://github.com/WCY-dt/ponghub):服务状态监控网站,旨在帮助用户监控和验证服务的可用性。使用 GitHub Actions + GitHub Pages,一键部署、无需服务器。

### 2025 年 7 月 24 号添加
#### 胡图图不涂涂-[GitHub](https://github.com/hukdoesn)
* :white_check_mark: [LiteOps](https://github.com/opsre/LiteOps):CI/CD 平台(专注实用性)。只解决真问题 —— 自动化构建、部署 一体化平台。开源轻量级DevOps平台 - [更多介绍](https://liteops.ext4.cn)

### 2025 年 7 月 10 号添加
#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)
* :white_check_mark: [Cealer](https://github.com/SpaceTimee/Sheas-Cealer-Droid):安卓端 SNI 伪造工具,无需代理即可合法加速 Github, Steam, Pixiv 等网站的直连,让你的网络冲浪畅快无阻

### 2025 年 7 月 4 号添加
#### 欲饮琵琶码上催 - [Github](https://github.com/ajiho)
* :white_check_mark: [Laravel 中文网](https://laravel.wiki):全球最流行的PHP框架 Laravel 的中文文档

### 2025 年 7 月 1 号添加
#### RainbowBird | 洛灵 (上海) - [Github](https://github.com/luoling8192), [博客](https://blog.luoling.moe)
* :white_check_mark: [Telegram Search](https://github.com/groupultra/telegram-search):功能强大的 Telegram 聊天记录搜索工具,支持向量搜索和语义匹配

### 2025 年 6 月 27 号添加
#### sing1ee(上海) 
* :white_check_mark: [Gemini CLI Docs](https://gemini-cli.xyz/docs/):Gemini CLI 相关技术文档和开发者资源(持续更新)

### 2025 年 6 月 24 号添加
#### Xiao-zaiyi(广西) - [Github](https://github.com/xiao-zaiyi/illa-helper)
* :white_check_mark: [浸入式学语言助手](https://github.com/xiao-zaiyi/illa-helper):基于"可理解输入"理论的浏览器扩展,帮助你在日常网页浏览中自然地学习语言 - [更多介绍](https://github.com/xiao-zaiyi/illa-helper/blob/master/README_ZH.md)

### 2025 年 6 月 3 号添加
#### IndieMakerKevin(成都) - [Github](https://github.com/PennyJoly)
* :white_check_mark: [NuxtPro开源版本](https://github.com/PennyJoly/NuxtPro):企业级 SaaS 出海模板(基于 Nuxt3),预集成 Stripe/Cream 支付、谷歌登录、多语言路由和SEO工具。快速构建 SSR 的全球化Web应用,开箱即用。1 小时内快速完成 MVP 开发,验证需求,并出海创收 - [更多介绍](https://nuxtpro.com)

### 2025 年 5 月 21 号添加
#### 韩数 - [Github](https://github.com/hanshuaikang)
* :white_check_mark: [AI-Media2Doc](https://github.com/hanshuaikang/AI-Media2Doc):一键将视频和音频转化为小红书/公众号/知识笔记/思维导图等各种风格的文档

### 2025 年 5 月 17 号添加
#### WeNext - [Github](https://github.com/weijunext)
* :white_check_mark: [Nexty.dev](https://nexty.dev): 多场景全栈 SaaS 开发模板。主要特性:1. 内置完整的一次性支付和订阅支付加积分、续订更新积分和退订扣积分的流程
2. 内置可视化界面管理定价卡片的管理功能,轻松且安全地创建和修改你的定价卡片
3. 内置高级CMS模块,不仅支持必备的文章信息,还支持设置置顶、文章状态和访问权限,适用于免费博客和付费newsletter场景
4. 提供 AI Demo,帮助不熟悉AI功能开发的开发者快速学习和应用

### 2025 年 5 月 13 号添加
#### masz
* :x: [ui2vue](https://www.ui2vue.cn):生成 vue3 代码的工具网站,支持拖拽&编辑方式添加组件,可直接导出vue3代码

### 2025 年 5 月 11 号添加
#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd/)
* :white_check_mark: [afdian-linker](https://github.com/CaoMeiYouRen/afdian-linker):集成了爱发电 API,提供统一的订单管理、赞助支付和外部查询能力。基于 Nuxt 3 & TypeScript 的全栈项目。

### 2025 年 5 月 10 号添加
#### xiaohanyu - [github](https://github.com/xiaohanyu)
* :white_check_mark: [YAMLResume](https://yamlresume.dev/):Resumes as Code in YAML,用 YAML 格式来撰写简历并生成精美专业的 PDF

### 2025 年 5 月 9 号添加
#### Crayon - [GitHub](https://github.com/ZhuoZhuoCrayon)
* :white_check_mark: [throttled-py](https://github.com/ZhuoZhuoCrayon/throttled-py):Python 限流工具,支持多种算法(固定窗口,滑动窗口,令牌桶,漏桶 & GCRA)及存储(Redis、内存),高性能

### 2025 年 4 月 30 号添加
#### ysykzheng - [github](https://github.com/ysykzheng)
* :white_check_mark: [TextReadTTS.com](https://textreadtts.com/):免费文本转语音接口(Free TTS API),免费额度有限

#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)
* :white_check_mark: [Sundry](https://github.com/DuckDuckStudio/Sundry):WinGet 本地清单管理工具,让您更方便地查看、移除清单。

### 2025 年 4 月 29 号添加
#### IndieMakerKevin(成都) - [Twitter](https://x.com/PennyJoly)
* :white_check_mark: [NuxtPro](https://nuxtpro.com):基于Nuxt3的企业级SaaS出海模板,预集成Stripe/Cream支付、谷歌登录、多语言路由和SEO工具。快速构建SSR的全球化Web应用,开箱即用.

### 2025 年 4 月 25 号添加
#### 西风逍遥游(湾区) - [Github](https://github.com/sunxfancy/SSUI)
* :white_check_mark: [SSUI](https://github.com/sunxfancy/SSUI):基于安全 Python 脚本的 stable diffusion AI 绘图工具,可以根据脚本中函数的类型自动生成 UI 界面,能方便快捷地复现其他用户的工作流

### 2025 年 4 月 22 号添加
#### zhtyyx(上海) - [Github](https://github.com/zhtyyx)
* :white_check_mark: [ioe 库存管理系统](https://github.com/zhtyyx/ioe):基于 Django 开发的综合性库存管理系统,专为零售商店、小型仓库和商品销售场所设计。系统提供了完整的商品管理、库存跟踪、销售记录、会员管理和数据分析功能,帮助企业高效管理库存和销售流程

### 2025 年 4 月 15 号添加
#### daya0576(上海) - [博客](https://changchen.me)
* :white_check_mark: [beaverhabits](https://github.com/daya0576/beaverhabits):无需设定目标的习惯追踪工具。基于 Python 开发的自托管习惯追踪 Web 应用,帮助用户轻松记录和管理日常习惯。它提供适配移动端的直观界面,专注于习惯的持续养成,而非单纯追求目标达成,让养成好习惯变得更自然

### 2025 年 3 月 17 号添加
#### dodid - [Github](https://github.com/dodid)
* :x: [PAC代理自动配置管理器](https://github.com/dodid/pac-proxy-manager):管理代理自动配置文件(PAC),支持灵活的代理规则设置

### 2025 年 2 月 10 号添加
#### yvling(合肥) - [Github](https://github.com/yv1ing), [博客](https://blog.yvling.cn)
* :white_check_mark: [茉莉审计](https://github.com/yv1ing/MollyAudit):LangChain 驱动的自动代码审计工具

### 2025 年 1 月 12 号添加
#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)
* :white_check_mark: Sitemap Creator ([Stable](https://github.com/marketplace/actions/sitemap-creator-stable) | [Pre-Release](https://github.com/marketplace/actions/sitemap-creator-pre-release)):用 GitHub Action 🚀 在你的仓库中创建和更新网站地图

### 2024 年 12 月 28 号添加
#### javayhu - [Github](https://github.com/javayhu), [Twitter](https://x.com/javay_hu)
* :white_check_mark: [Free Directory Boilerplate](https://github.com/javayhu/free-directory-boilerplate):开源的导航站模板,Nextjs + Authjs + Sanity + ShadcnUI

### 2024 年 12 月 23 号添加
#### 喻灵(合肥) - [Github](https://github.com/yv1ing), [博客](https://yvling.cn/)
* :white_check_mark: [MollyBlog](https://github.com/yv1ing/MollyBlog):个人博客系统(简单易用)

### 2024 年 11 月 15 号添加
#### xtthaop(北京) - [Github](https://github.com/xtthaop), [博客](https://zxctb.top)
* :white_check_mark: [知行笔记 - Note, Share, Possess](https://github.com/xtthaop/zxnote-web):开源内容管理系统,可组合开源博客 [知行博客](https://github.com/xtthaop/zxblog-web) 搭建个人博客,记录,分享,拥有!

### 2024 年 11 月 3 号添加
#### d2learn - [Github](https://github.com/d2learn), [论坛](https://forum.d2learn.org/category/9/xlings)
* :white_check_mark: [xlings](https://github.com/d2learn/xlings): 一个 `⌈软件安装、一键环境配置、AI代码提示、实时编译运行、教程教学项目搭建和管理⌋` 编程学习和课程搭建工具🛠️ - [更多介绍](https://d2learn.org/xlings)

### 2024 年 10 月 28 号添加
#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd)
* :white_check_mark: [RSS Impact](https://github.com/CaoMeiYouRen/rss-impact-server):RSS Impact 是一个支持 Hook 的 RSS 订阅工具,支持 推送通知、Webhook 、下载、BitTorrent、AI 大模型 等多种形式的 Hook 。
为什么做这个工具:在使用 RSS 的过程中,我产生了一些需求,例如 推送通知、AI 总结、下载图片、下载 BitTorrent 等,为此还分别写了不同的工具。
然后我就意识到,这些需求都可以概括为 `RSS 轮询` + `执行某个操作`,因此,将这些操作抽象出来,作为一个 Hook,是更合适的选择,也更容易复用。

### 2024 年 10 月 13 号添加
#### 阿凯呵 - [博客]( https://www.sodair.top)
* :white_check_mark: [LunaSwapping](https://github.com/loxi-opensource/luna-swapping):开源的 AI 换脸应用解决方案。1 张照片快速生成高质量 AI 写真照,提供小程序端、服务端、管理后全套代码。内置 10万+ 高清写真模板,可自定义模板管理。提供基础 AI 换脸能力,可构建等多场景玩法。

### 2024 年 10 月 7 号添加
* :white_check_mark: [Awesome-Iwb](https://github.com/Awesome-Iwb/Awesome-Iwb/):一体机和电子白板实用软件合集

### 2024 年 10 月 2 号添加
#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)
* :white_check_mark: [芙芙工具箱开发工具](https://github.com/DuckDuckStudio/Fufu_Dev_Tools/):芙芙工具箱的开发工具包,可以进行一些代码检查和连续尝试操作,后续也会添加更多的功能。

### 2024 年 8 月 5 号添加
#### OpenDataLab(上海) - [Github](https://github.com/opendatalab)
* :white_check_mark: [LabelU](https://github.com/opendatalab/labelU):开源标注工具(轻量级)- [更多介绍](https://github.com/opendatalab/labelU/blob/main/README_zh-CN.md)
* :white_check_mark: [LabelLLM](https://github.com/opendatalab/LabelLLM):大模型对话标注平台(开源免费)- [更多介绍](https://github.com/opendatalab/LabelLLM/wiki/README%E2%80%90zh)

### 2024 年 7 月 22 号添加
#### ufo5260987423 - [Github](https://github.com/ufo5260987423)
* :white_check_mark: [scheme-langserver](https://github.com/ufo5260987423/scheme-langserver):主打 Scheme 语言局部变量自动补全的语言服务器,还有类型推断功能。

### 2024 年 7 月 17 号添加
#### Zen Huifer - [Github](http://github.com/huifer)
* :white_check_mark: [go-iot-platform](https://gitee.com/pychfarm_admin/go-iot-platform):Go IoT 平台,高效、可扩展的物联网解决方案,用 Go 语言开发。专注于提供稳定、可靠的 MQTT 客户端管理,以及对 MQTT上报数据的全面处理和分析 - [更多介绍](https://gitee.com/pychfarm_admin/go-iot-platform/milestones/202872), [GitHub](https://github.com/iot-ecology/go-iot-platform)

### 2024年7月15号添加
#### 0x676e67 - [Github](https://github.com/0x676e67)
* :white_check_mark: [reqwest-impersonate](https://github.com/0x676e67/reqwest-impersonate):简单而强大的 Rust HTTP/WebSocket 客户端(模拟 TLS/JA3/JA4/HTTP2 指纹)

### 2024年6月28号添加
#### LeoCodeEasy - [Github](https://github.com/LeoCodeEasy)
* :white_check_mark: [tinrh](https://tinrh.vercel.app):无需路由即可实现页面切换,适用于Vue3

### 2024年6月25号添加
#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)
* :clock8: [GitHub Labels Manager](https://github.com/DuckDuckStudio/GitHub-Labels-Manager/):自动帮你复制仓库标签、获取仓库标签、清空已有标签的工具 - 因与 [GitHub Cil](https://cli.github.com/manual/gh_label_clone) 重复关闭

### 2024年6月4号添加
#### 0x676e67 - [Github](https://github.com/0x676e67)
* :white_check_mark: [vproxy](https://github.com/0x676e67/vproxy):简单而强大的 Rust HTTP/Socks5 代理,允许使用从 CIDR 地址计算的 IP 绑定发起网络请求 - [更多介绍](https://github.com/0x676e67/vproxy)

### 2024年5月29号添加
#### 鬼画符 - [主页](http://www.guanleiming.com)
* :white_check_mark: [translate.js](https://github.com/xnx3/translate):两行 JS 实现 HTML 全自动翻译。无需改动页面、无语言配置文件、无 API Key、对 SEO 友好!
* :white_check_mark: [templatespider](https://github.com/xnx3/templatespider):扒网站工具,看好哪个网站,指定好 URL,自动扒下来做成HTML模版。所见网站,皆可为我所用!
* :white_check_mark: [wangmarket](https://github.com/xnx3/wangmarket):私有化部署自己的 SAAS 云建站系统,后台开通管理网站,每个网站独立管理。不需任何服务器及后端知识。一台1核2G 服务器可建上万独立网站。

### 2024年5月23号添加
#### LIGHT CHASER - [Github](https://github.com/xiaopujun)
* :white_check_mark: [xiaopujun(DAGU)](https://github.com/xiaopujun/light-chaser):开源、免费、简单、高效的 Web 端数据可视化设计工具。可用于数据分析、数据看板、数据大屏等(内置蓝图事件编辑器)

### 2024年5月17号添加
#### lalilu (深圳) - [Github](https://github.com/cy745)
* :white_check_mark: [LMusic](https://github.com/cy745/LMusic):简洁好看,回归听歌本质的本地音乐播放器

### 2024年5月6号添加
#### Bess Croft(武汉) - [Github](https://github.com/besscroft), [博客](https://besscroft.com/)
* :white_check_mark: [PicImpact](https://github.com/besscroft/PicImpact):摄影佬专用 ⌈相片集⌋,基于 Next.js 开发。

#### rookie-luochao - [Github](https://github.com/rookie-luochao)
* :white_check_mark: [openapi-ui](https://github.com/rookie-luochao/openapi-ui) 基于 swagger/openapi 规范的接口文档和接口测试工具, 支持后端框架接入,平替 swagger-ui,欢迎 pr 一起共同建设
* :white_check_mark: [go-openapi-ui](https://github.com/rookie-luochao/go-openapi-ui) openapi-ui 的 golang 实现,支持常用 golang 后端开发框架,例如:gin、fiber、echo(欢迎提 pr 补充其他 golang 后端框架),欢迎补充其他编程语言的后端框架接入包

### 2024年4月28号添加
#### kisslove - [Github](https://github.com/kisslove/web-monitoring)
- :white_check_mark: [前端性能监控平台](https://hubing.online/):日活跃、用户行为记录、访问日志、JS 错误日志、API 请求详情、访问性能评估,开发者和运营必须关心的各种数据(开源)

### 2024年4月26号添加
#### zhangdi - [Github](https://github.com/zhangdi168)
- :white_check_mark: [VitePressSimple](https://github.com/zhangdi168/VitePressSimple):基于 Wails2 开发的 Vitepress 可视化写作、可视化配置编辑的客户端工具,助力独立开发者快速搭建自己的产品手册或博客(开源、免费!) - [更多介绍](http://vpsimple.xiaod.co/)

#### zyronon - [Github](https://github.com/zyronon), [博客](https://juejin.cn/user/377887729139502/posts)
- :white_check_mark: [douyin](https://zyronon.gitee.io/douyin/):Vue3 + Pinia + Vite5 仿抖音,完全度90% (Imitate TikTok with 90% completeness) [更多介绍](https://github.com/zyronon/douyin)

### 2024年4月25号添加
#### qwqcode(杭州) - [Github](https://github.com/qwqcode)
* :white_check_mark: [Artalk](https://artalk.js.org/):开源博客评论系统 - [更多介绍](https://github.com/ArtalkJS/Artalk)

### 2024年4月22号添加
#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)
* :white_check_mark: [中文 Git](https://duckduckstudio.github.io/yazicbs.github.io/Tools/chinese_git/):用中文命令操作 Git,使不熟悉英文的用户更轻松地使用 Git
* :white_check_mark: [Power by 虚空终端](https://github.com/DuckDuckStudio/power_by_akasha_terminal):简单的命令行装饰配置,把 Windows 终端变成虚空终端(或其他自定义内容)

### 2024年4月19号添加
#### wujunwei928(北京) - [Github](https://github.com/wujunwei928)
* :white_check_mark: [edge-tts-go](https://github.com/wujunwei928/edge-tts-go):基于微软 Edge 浏览器的大声朗读接口,开发的 TTS 文字转语音 Golang 工具,包含晓晓、云扬、云希等"网红主播"。
* :white_check_mark: [parse-video](https://github.com/wujunwei928/parse-video):Golang 短视频去水印工具:抖音,皮皮虾,火山,微视,最右,快手,全民小视频,皮皮搞笑,西瓜视频,虎牙,梨视频,Acfun,好看视频等

### 2024年4月15号添加
#### Hu Shenghao (南京) - [Github](https://github.com/hushenghao)
* :white_check_mark: [Easter Eggs](https://github.com/hushenghao/AndroidEasterEggs):Android 系统复活节彩蛋集合 App,包含了所有 Android 版本的系统彩蛋,并兼容到 Android 5.0 系统

### 2024年4月9号添加
#### lonnywong - [Github](https://github.com/trzsz/trzsz), [博客](https://trzsz.github.io/)
* :white_check_mark: [trzsz](https://github.com/trzsz/trzsz):trzsz ( trz / tsz ) 优秀的文件传输工具,和 lrzsz ( rz / sz ) 类似的、兼容 tmux 的文件传输工具 - [更多介绍](https://trzsz.github.io/)

### 2024年3月18号添加
#### 程序员鱼皮 - [Github](https://github.com/liyupi)
* :white_check_mark: [Yuindex](https://github.com/liyupi/yuindex):极客范儿的浏览器主页 Vue 3 + Node.js 全栈项目,自实现 web 终端 + 命令系统
* :white_check_mark: [AI 自动回复工具](https://github.com/liyupi/yu-auto-reply):可用于知识星球的 AI 问答机器人

### 2024年3月13号添加
#### chaos-zhu [GitHub](https://github.com/chaos-zhu)
* :white_check_mark: [EasyNode](https://github.com/chaos-zhu/easynode):简易的个人 Linux 服务器 ssh 管理面板(webSSH&webSFTP)。多服务器管理; 通过 WebSocket 实时更新服务器基本信息: 系统、公网IP、CPU、内存、硬盘、网卡等;基于浏览器解决SSH&SFTP跨端烦恼——Web SSH&Web SFTP - [更多介绍](https://github.com/chaos-zhu/easynode)

### 2024年3月9号添加
#### work7z [GitHub](https://github.com/work7z)
* :clock8: [LafTools工具箱](https://github.com/work7z/LafTools):免费安全开源跨平台的程序员工具箱,涵盖各类转换加解密解析等功能,还提供常用开发手册和资源页。除此之外,还将不断融入AI、笔记、时间管理等功能加入到这个工具箱,旨在帮助程序员更快更好的完成手头上的工作,期待成为程序员界的瑞士军刀 - [更多介绍](https://my.laf-tools.com)

### 2024年2月2日添加
---
#### beavailable - [Github](https://github.com/beavailable)
- :white_check_mark: [apt.sh](https://github.com/beavailable/apt.sh):为 msys2 中的 pacman 提供一个用户友好的 shell 包装器

### 2024年1月22日添加
---
#### Zen Huifer(浙江) - [Github](https://github.com/huifer)
* :white_check_mark: [env-manager](https://gitee.com/pychfarm_admin/env-manager):可视化的方式快捷切换环境

### 2024年1月12日添加
---
#### Aooohan(北京) - [主页](https://github.com/aooohan)
* :white_check_mark: [VersionFox](https://github.com/version-fox/vfox):跨平台、可拓展的 SDK 版本管理工具, 支持 Nodejs、Java、Dart、Flutter 等多种SDK.

### 2023年12月18日添加
---
#### mengxianliang(北京) - [主页](https://mengxianliang.com)
* :white_check_mark: [XLUIKit](https://github.com/mengxianliang/XLUIKit):iOS UI 工具集

### 2023年12月11日添加
---
#### heygsc - [Github](https://github.com/heygsc)
* :white_check_mark: [按钮样式库](https://ultra-button-docs.pages.dev/):Vue 的按钮样式库,效果丰富。

### 2023年12月8日添加
---
#### Meekdai(杭州) - [Github](https://github.com/Meekdai/), [博客](https://meekdai.com/)
* :white_check_mark: [Gmeek](https://github.com/Meekdai/Gmeek):超轻量级个人博客框架,只需 2 步配置轻松搭建。

#### jianchang512(青岛) - [Github](https://github.com/jianchang512)
* :white_check_mark: [pyvideotrans](https://github.com/jianchang512/pyvideotrans):视频翻译和配音桌面软件,可将视频从一种语言翻译为另一种语言并配音,集成 OpenAI Whisper 语音识别、OpenAI-TTS/edgeTTS 语音合成、Google/Deepl/ChatGPT/Baidu 字幕翻译、音视频分离合并等功能


### 2023年11月27日添加
---
#### Leo Song(上海) - [Github](https://github.com/LHRUN/bubble)
* :white_check_mark: [Bubble](https://bubble-awesome-profile.vercel.app/):收录 Github Profile 和 Readme Component 的网站

### 2023年11月2日添加
---
### changwu - [Github](https://github.com/changwu/)
* :white_check_mark: [专注私有部署的智能简历解析系统](https://github.com/changwu/cvparser):基于自然语言处理和机器学习的高精准度简历解析系统,生产环境中海量简历解析检验,稳健性和智能性得到一致肯定。一次购买、永久许可。市面上唯一可以私有云部署(本地部署)一键安装试用的智能简历解析系统,数据安全完全掌握在自己手里。

### 2023年9月6日添加
---
#### gngpp - [Github](https://github.com/gngpp)
* :white_check_mark: [opengpt](https://github.com/gngpp/opengpt):逆向工程的 `ChatGPT` 代理(绕过 Cloudflare 403 Access Denied) - [更多介绍](https://github.com/gngpp/opengpt/blob/main/README_zh.md)
* :white_check_mark: [xunlei](https://github.com/gngpp/xunlei):`Linux` 迅雷下载服务(支持OpenWrt/Alpine/Docker)- [更多介绍](https://github.com/gngpp/xunlei/blob/main/README.md)

### 2023年8月21日添加
---
#### HildaM(广东) - [Github](https://github.com/HildaM)
* :white_check_mark: [SparkDesk-api](https://github.com/HildaM/sparkdesk-api):讯飞星火大模型 Python API

#### 百年孤独(成都) - [Github](https://github.com/everydoc)
* :white_check_mark: [JRebel 激活服务](https://github.com/everydoc/jrebel-license-server):基于 SpringBoot 的 JRebel 激活服务,支持Docker,也可直接使用我提供的地址(只支持IPv6) - [更多介绍](https://jrebel.imjcker.com:1314/)


### 2023年8月12日添加
---
#### hncboy(杭州) - [Github](https://github.com/hncboy)
* :white_check_mark: [AI 蜂巢](https://github.com/hncboy/ai-beehive):基于 Java 使用 Spring Boot 3 和 JDK 17,支持的功能有 ChatGPT、OpenAi Image、Midjourney、NewBing、文心一言等等

#### kingwrcy - [Github](https://github.com/kingwrcy)
* :white_check_mark: [mblog](https://mblog.club) 开源自部署的个人微博平台,支持单人/多人/评论/审核,支持markdown,支持前后分离/不分离 - [更多介绍](https://github.com/mblog-backend/backend)

#### zcf0508 - [Github](https://github.com/zcf0508)
* :white_check_mark: [vue-hook-optimizer](https://hook.huali.cafe):用来分析和展示 Vue3 组件中变量和函数的调用关系,便于重构代码 - [更多介绍](https://github.com/zcf0508/vue-hook-optimizer)


### 2023年8月4日添加
---
#### Morestrive - [Github](https://github.com/more-strive)
* :white_check_mark: [vue-fabric-design](https://yft.design/):基于 Canvas 的开源版"创客贴",在线生成名片、海报、宣传单,支持 文字、图片、形状、线条、二维码 、条形码等 - [更多介绍](https://github.com/dromara/yft-design)

### 2023年8月2日添加
---
#### WuKongIM - [Github](https://github.com/tangtaoit)
:white_check_mark: [唐僧叨叨](https://tangsengdaodao.com/):仿 Telegram 的自研开源聊天软件 - [更多介绍](https://github.com/TangSengDaoDao/TangSengDaoDaoServer)

### 2023年8月1日添加
---
#### kalcaddle(杭州) - [Github](https://github.com/kalcaddle)
* :white_check_mark: [kodbox](https://github.com/kalcaddle/kodbox):支持各种云存储的云盘系统,便捷快速搭建团队或企业网盘

### 2023年7月31日添加
---
#### RockChinQ(桂林) - [Github](https://github.com/RockChinQ)
* :white_check_mark: [QChatGPT](https://github.com/RockChinQ/QChatGPT/blob/master/README.md):😎高稳定性、🐒低耦合、🧩支持插件的 ChatGPT New Bing QQ 机器人🤖

### 2023年7月29日添加
---
#### JingMatrix - [Github](https://github.com/JingMatrix)
* :white_check_mark: [ChromeXt](https://github.com/JingMatrix/ChromeXt):让用户可以在基于 Chromium 或 WebView 的浏览器上运行用户脚本以及打开开发者工具的 Xposed 模块 - [更多介绍](https://www.bilibili.com/video/BV1TV4y1b7zR/)

### 2023年7月23日添加
---
#### Sunrisepeak - [Github](https://github.com/Sunrisepeak), [Bilibili](https://space.bilibili.com/65858958), [知乎](https://www.zhihu.com/people/SPeakShen)
* :clock8:  [DStruct](https://github.com/Sunrisepeak/DStruct):🔥 一个**易于移植/使用/学习且结构简洁**的**数据结构模板库**
* :clock8:  [DSVisual](https://github.com/Sunrisepeak/DSVisual):一个**数据结构可视化**组件库


### 2023年7月22号添加
---
#### Tw93 - [Github](https://github.com/tw93), [Twitter](https://twitter.com/HiTw93), [博客](https://tw93.fun)
* :white_check_mark: [Pake](https://github.com/tw93/Pake):利用 Rust 轻松构建轻量级桌面应用
* :white_check_mark: [潮流周刊](https://weekly.tw93.fun/):潮流技术资讯,好用开源工具推荐的周刊

### 2023年7月12号添加
---
#### Leafer(北京) - [Github](https://github.com/leaferjs/ui)
* :white_check_mark: [LeaferJS](https://www.leaferjs.com/): 绚丽多彩的 HTML5 Canvas 2D 图形渲染引擎, 可结合 AI 绘图、生成界面,能让你拥有瞬间创建100万个图形的超强能力,免费开源、易学易用、场景丰富 - [更多介绍](https://leaferjs.com/ui/blog/2023-06-28.html)

### 2023年6月29号添加
---
#### tomsun28(绵阳) - [Github](https://github.com/tomsun28).
* :white_check_mark: [HertzBeat](https://hertzbeat.com/):[开源实时监控工具](https://github.com/dromara/hertzbeat) + [云服务](https://console.tancloud.cn/), 支持对应用网站,数据库,操作系统,中间件,云原生,网络等的监控告警通知,类似于 Zabbix 和 Prometheus - [更多介绍](https://github.com/dromara/hertzbeat)

### 2023年6月16号添加
---
#### Fangnan700(合肥) - [Github](https://github.com/Fangnan700), [博客](https://blog.yvling.icu/)
* :white_check_mark: [ChangePicBed](https://github.com/Fangnan700/ChangePicBed):批量导出语雀文档、批量更换图床 - [更多介绍](https://blog.yvling.icu/2023/06/15/Markdown%E5%9B%BE%E7%89%87%E6%89%B9%E9%87%8F%E6%8D%A2%E5%9B%BE%E5%BA%8A/)

### 2023年4月30号添加
---
#### cxxsucks(徐州)
* :white_check_mark: [orient](https://github.com/cxxsucks/orient/releases/tag/v0.3.1):Linux, macOS 与 Windows 上的*命令行*文件检索工具,含有`find`以及`Everything`的各种功能,外加内容查找、上下层目录查找等 - [更多介绍](https://github.com/cxxsucks/orient)

### 2023年4月27号添加
---
#### jahnli - [Github](https://github.com/jahnli)
* :white_check_mark: [awesome-flutter-plugins](https://github.com/jahnli/awesome-flutter-plugins):好用的Flutter插件以便更效率的开发 - [更多介绍](https://github.com/jahnli/awesome-flutter-plugins)

### 2023年4月7号添加
---
#### KissesJun - [GitHub](https://github.com/GWillS163)
* :white_check_mark: [MASystem](https://github.com/GWillS163/howUseAIInAppEnginnering):基于 ChatGPT+plantUML 的 软件工程 UML 图生成工具(demo,后续版本未开源)

### 2023年3月19号添加
---
#### J。z(广州) - [Github](https://github.com/Jezemy/MASystem)
* :white_check_mark: [MASystem](https://github.com/Jezemy/MASystem):基于知识图谱的中文医疗问答系统

### 2023年3月2号添加
---
#### S1NH - [博客](http://s1nh.org/)
* :white_check_mark: [gpu-based-image-stitching](https://github.com/duchengyao/gpu-based-image-stitching):快速图像拼接算法 -  [介绍1](http://s1nh.org/post/A-survey-on-image-mosaicing-techniques/), [介绍2](http://s1nh.org/post/image-stitching-post-process/)

### 2023年2月23号添加
---
#### 方楠(合肥) - [Github](https://github.com/Fangnan700), [博客](https://www.yvling.top/)
* :white_check_mark: [AI-aides](https://github.com/Fangnan700/AI-aides):接入了 ChatGPT 的人工智能助手。

### 2023年2月10号添加
---
#### 一刀(杭州) - [Github](https://github.com/laosanyuan)
* :white_check_mark: [DaoLang](https://github.com/laosanyuan/DaoLang):简单易用的 C# 客户端多语言国际化应用框架

### 2023年1月26号添加
---
#### Robert1037(清远) - [Github](https://github.com/Robert1037), [博客](https://rbtblog.com/)
* :white_check_mark: [sha256full/fast/min](https://rbtblog.com/posts/SHA256%E7%AE%97%E6%B3%95%E7%9A%84C%E8%AF%AD%E8%A8%80%E5%AE%9E%E7%8E%B0/):C 实现轻量命令行执行的 SHA256 散列值计算程序,加进用户路径可快捷 hash 字符串或文件

### 2023年1月24号添加
---
#### soonxf(wuhu) - [Github](https://github.com/soonxf), [博客](http://blog.340200.xyz)
* :white_check_mark: [微型防火墙](https://github.com/soonxf/Micro-Firewall):简单的 Linux web 防火墙

### 2023年1月23号添加
---
#### Tsonglew(杭州) - [Github](https://github.com/tsonglew)
* :white_check_mark: [intellij-etcdhelper](https://github.com/tsonglew/intellij-etcdhelper):支持 JetBrains 全家桶的 etcd GUI 插件 - [更多介绍](https://plugins.jetbrains.com/plugin/19924-etcdhelper)

### 2023年1月13号添加
---
#### dsy4567 - [Github](https://github.com/dsy4567)
* :white_check_mark: [4399 on vscode](https://marketplace.visualstudio.com/items?itemName=dsy4567.4399-on-vscode) - 在 VScode 上玩 4399 小游戏, 帮助你劳逸结合, 提高开发效率

### 2023年1月11日添加
---
#### liudf0716(北京) - [Github](https://github.com/liudf0716), [推特](https://twitter.com/staylightblow8)
* :white_check_mark: [apfree-wifidog](https://github.com/liudf0716/apfree_wifidog): 高性能轻量级的 portal 解决方案。
* :white_check_mark: [xfrpc](https://github.com/liudf0716/xfrpc): C 语言实现的内网穿透客户端,配合 frp 服务端使用。

#### opensug(北京) - [Github](https://github.com/opensug/wp-opensug "https://github.com/opensug/wp-opensug"), [博客](https://www.opensug.org "https://www.opensug.org")
* :white_check_mark: [openSug - WordPress插件](https://wordpress.org/plugins/opensug/ "https://wordpress.org/plugins/opensug/"):为访问者提供搜索建议,方便用户搜索 - [更多介绍](https://wordpress.org/plugins/opensug/ "https://wordpress.org/plugins/opensug/")

### 2023年1月9日添加
---
#### 释慧利(上海) - [Github](https://github.com/shihuili1218)
* :clock8:  [Klein](https://github.com/shihuili1218/klein):基于 Paxos 的分布式集合工具库,包括分布式 ArrayList、分布式 HashMap、分布式缓存、分布式锁等。

### 2023年1月7日添加
---
#### geektcp(深圳) - [Github](https://github.com/geektcp)
* :white_check_mark:  [Namjagbarwa-wow](https://github.com/geektcp/Namjagbarwa-wow):开源魔兽世界项目

### 2022年12月4日添加
---
#### KID-joker - [Github](https://github.com/KID-joker)
* :white_check_mark: [proxy-web-storage](https://github.com/KID-joker/proxy-web-storage): 借助 proxy,扩展了 web storage 的功能,使用起来,更加方便快捷,也更加强大。主要功能为保持值类型不变,可直接操控 Object、Array,支持监听数据变化和设置过期时间。
* :white_check_mark: [npm-deprecated-check](https://github.com/KID-joker/npm-deprecated-check): 检查当前项目、全局或者指定安装包是否已弃用。

### 2022年11月12日添加
---
#### zhennann(健哥/郑州) - [Github](https://github.com/zhennann)
* :white_check_mark: [CabloyJS](https://github.com/zhennann/cabloy): 自带工作流引擎的 Node.js 全栈框架,面向开发者的低代码开发平台,更是一款兼具低代码的开箱即用和专业代码的灵活定制的 PAAS 平台


### 2022年5月18日添加
---
#### haoziqaq(成都/无锡) - [Github](https://github.com/haoziqaq)
* :white_check_mark: [Varlet UI](https://github.com/varletjs/varlet):基于 Vue3 开发的 Material 风格移动端组件库。

### 2022年3月12号添加
---
#### mnikn(广州) - [Github](https://github.com/mnikn)
* :white_check_mark: [General Data Manager](https://github.com/mnikn/general-data-manager):通用配置数据管理软件,能够根据数据格式自定义定制对应的编辑面板。支持 JSON 数据的可视化

### 2022年2月21号添加
---
#### Yxliam(广州) - [Github](https://github.com/Yxliam)
* :white_check_mark: [优工具](https://www.toolbon.com/):在线工具箱

### 2022年1月29号添加
---
#### 谢宇恒(深圳) - [主页](https://xieyuheng.com), [Github](https://github.com/xieyuheng)
* :white_check_mark: [蝉语](https://cicada-lang.org):形式化数学定理的程序语言。

### 2021年11月11号添加
---
#### Eson(广州) - [Github](https://github.com/itiwll), [博客](https://blog.esonwong.com)
* :white_check_mark: [Network RC](https://network-rc.esonwong.com):Network RC 是运行在树莓派和浏览器上的网络遥控车软件 - [更多介绍](https://github.com/itiwll/network-rc/blob/master/README-cn.md)

### 2021年11月6号添加
---
#### xnat9(成都) - [Github](https://github.com/xnat9)
* :white_check_mark: [tiny](https://github.com/xnat9/tiny):小巧的 Java 应用微内核框架, 可用于构建小工具项目,web 项目,各种大大小小的项目

### 2021年10月28号添加
---
#### Mizhousoft(赣州) - [Github](https://github.com/mizhousoft)
* :white_check_mark: [开源选型](https://open.mizhousoft.com):为 Java、Golang、前端、Swift、Android 开发人员提供业界流行的组件


### 2021年10月23号添加
---
#### xnat9(成都) - [Github](https://github.com/xnat9)
* :white_check_mark: [GRule](https://github.com/xnat9/grule):自创 Groovy DSL 动态规则(rule)执行引擎, 流程引擎. 特色 风控系统, 规则引擎, 动态接口配置(低代码)


### 2021年8月26号添加
---
#### montisan(长沙) - [Github](https://github.com/montisan)
* :white_check_mark: [极客编辑器](https://www.geekeditor.com):所见即所得(WYSIWYG)富文本沉浸式深度写作编辑器,它注重效率创作,可多开文档编辑,同时支持Markdown语法输入。它重视写作者内容隐私及数据安全,目前已支持浏览器本地、Github及Gitee仓库文档存储,支持 Github、Gitee 仓库图片资源存储。在线版访问:[https://www.geekeditor.com](https://www.geekeditor.com) 。当前,编辑器除了支持常用内容块外,并支持了代码块、LaTex数学公式、Mermaid图表、Drawio制图,可以一键复制到微信公众号、知乎及掘金等平台发布。此外,编辑器支持了截图粘贴以及本地图片文件拖拽至编辑区任意位置等便捷功能。

### 2021年5月20号添加
---
#### beavailable - [Github](https://github.com/beavailable)
* :white_check_mark: [share](https://github.com/beavailable/share):分享文件和文本,用这一个工具就够了!

### 2021年4月13号添加
---
#### xiejiahe(珠海) - [Github](https://github.com/xjh22222228)
* :white_check_mark: [Boomb](https://github.com/xjh22222228/boomb):基于 Github 轻松管理您的存储图库

### 2021年1月2号添加
---
#### yanhuihang(广州) - [Gitee](https://gitee.com/yanhuihang/)
* :white_check_mark: [哔哩哔哩舆论工具](https://gitee.com/yanhuihang/Bilibili):哔哩哔哩视频网弹幕发送者查看器(本来是加密的,解密了一下)

### 2020年10月24号添加
---
#### RiverTwilight(成都) - [Github](https://github.com/RiverTwilight), [博客](https://blog.yungeeker.com)
* :white_check_mark: [NBlog](https://blog.yungeeker.com):支持多语言和评论的静态 Markdown 博客系统,无需服务器,响应式 - [更多介绍](https://github.com/RiverTwilight/NBlog)

### 2020年9月23号添加
---
#### Strawmanbobi(南京) - [Gitlab](http://strawmanbobi.wicp.net/irext),
* :white_check_mark: [IRext](https://cc.irext.net):万能红外遥控解决方案,全球唯一开源万能红外遥控码库+编解码方案(IRext open source organization)

### 2020年9月5号添加
---
#### Writeup007 - [Github](https://github.com/Writeup007)
* :white_check_mark: [Windows 版 tail 命令](https://github.com/Writeup007/windows-tail):Windows 版 tail 命令,可在 CMD 下直接使用,解决 Windows 日志查看问题。

### 2020年7月15号添加
---
#### Elliot(杭州) - [GitHub](https://github.com/elliotreborn)
* :white_check_mark: [SOCODE.PRO](https://socode.pro/extension/):在浏览器地址栏中快捷、舒适地搜索多种类型的编程文档。

### 2020年6月30号添加
---
#### doho(北京) - [Github](https://github.com/zwh1666258377)
* :white_check_mark: [gitbook2spa](https://github.com/tigergraph/gitbook2spa):将 Gitbook 导出的原数据转换成单页面应用的工具,像素级还原。 - [更多介绍](https://github.com/tigergraph/gitbook2spa)

### 2020年4月14号添加
---
#### Jezemy(广州) - [Github](https://github.com/Jezemy)
* :white_check_mark: [视频字幕翻译器](https://github.com/Jezemy/VideoSubScanPlayer):自动翻译内嵌字幕的视频播放器

### 2020年4月5号添加
---
#### Writeup007 - [Github](https://github.com/Writeup007/weibo_Hot_Search)
* :white_check_mark: [微博热搜爬虫](https://github.com/Writeup007/weibo_Hot_Search):每天定时爬取微博热搜榜的内容,留下互联网人的记忆。

### 2020年3月4号添加
---
#### huifer(杭州) - [Github](https://github.com/huifer)
* :white_check_mark: [平面算法](https://github.com/huifer/planar_algorithm): 平面几何算法

### 2020年2月29号添加
---
#### Captain(深圳) - [Github](https://github.com/timi-liuliang)
* :white_check_mark: [Echo](https://github.com/timi-liuliang/echo):新建中的跨平台游戏引擎

### 2020年1月16号添加
---
#### SanJin(北京) - [Github](https://github.com/sanjinhub), [博客](https://geek.lc)
* :white_check_mark: [HFish](https://github.com/hacklcx/HFish):国内最好用的开源蜜罐框架系统 - [更多介绍](https://github.com/hacklcx/HFish/blob/master/README.md)
* :white_check_mark: [Hexo-Geek主题](https://github.com/sanjinhub/hexo-theme-geek):更符合 Geek 精神的极简主题 - [更多介绍](https://github.com/sanjinhub/hexo-theme-geek/blob/master/README.md)

### 2020年1月8号添加
---
#### MagicLu(青岛) - [GitHub](https://github.com/MagicLu550),[博客](http://blog.noyark.net)
- :clock8: [文言文编程语言: WenYan-Lang Java编译器](https://github.com/MagicLu550/wenyan-lang_jvm): 实现了对于文言文编程语言在JVM上运行

### 2020年1月7号添加
---
#### Hancel.Lin(深圳) - [GitHub](https://github.com/imlinhanchao), [博客](http://hancel.org/)
* :white_check_mark: [国家节假日解析爬虫](https://github.com/imlinhanchao/chinese_holiday_spider_module):从国务院网站解析获取国家节假日公布页面的节假日安排。
* :white_check_mark: [维基百科全站镜像](https://github.com/imlinhanchao/ngx_proxy_wiki):通过 Nginx 反向代理制作维基百科全站镜像的配置档
* :white_check_mark: [GitHub Page 图床](https://www.npmjs.com/package/github-picbed):借助于 GitHub Page 和 GitHub Api 做图床 - [更多介绍](https://github.com/imlinhanchao/github-picbed)
* :white_check_mark: [Google 翻译 node 库](https://www.npmjs.com/package/translator-promise):通过模拟请求实现 Google 翻译功能 - [更多介绍](https://github.com/imlinhanchao/translator-promise)
* :white_check_mark: [VitePress JS 代码预览插件](https://www.npmjs.com/package/vitepress-script-preview):VitePress 插件,增加一个可预览 JS 代码执行结果的 markdown 容器。 - [更多介绍](https://imlinhanchao.github.io/vitepress-script-preview/)

### 2019年12月17号添加
---
#### Easy - [微博](https://weibo.com/easy), [GitHub](https://github.com/easychen)
* :white_check_mark: [Server酱](http://sc.ftqq.com):接口超级简单的微信模板消息推送服务

### 2019年12月5号添加
---
#### inspurer - [Github](https://github.com/inspurer)
* :white_check_mark: [刷脸考勤系统](https://github.com/inspurer/WorkAttendanceSystem):基于 dlib 和 OpenCV 的 PC 端刷脸考勤系统


#### Jiang-Xuan(Hangzhou) - [Github](https://github.com/Jiang-Xuan)
* :white_check_mark: [tuchuang.space](https://github.com/Jiang-Xuan/tuchuang.space):测试驱动的开源图床系统, 免费存储图片

### 2019年11月21号添加
---
#### 不怕天黑(杭州) - [Github](https://github.com/liujingxing), [博客](https://juejin.im/user/590af762a22b9d0057a6eaca/posts)
* :white_check_mark: [RxHttp](https://github.com/liujingxing/RxHttp):一条链发送任意请求,让你眼前一亮的 Http 请求框架
* :white_check_mark: [RxLife](https://github.com/liujingxing/RxLife):一行代码解决 RxJava 内存泄漏,一款轻量级别的 RxJava 生命周期管理库

### 2019年11月4号添加
---
#### 何辉(深圳) - [Github](https://github.com/qq475742653)
* :white_check_mark: [皕杰报表](http://www.headset.xin/BIOSREP/):做后台 + ECharts 做前端集成演示:所有数据皆出后台报表获取,构造成 ECharts 所需要的 JSON 数组(一维数据、二维数据、三维数据等),传给前端的 ECharts,支持大屏显示、实时刷新。展示了24类,上百张 ECharts 报表

### 2019年10月13号添加
---
#### panjf2000(潘少) - [Github](https://github.com/panjf2000), [博客](https://taohuawu.club/)
* :white_check_mark: [gnet](https://github.com/panjf2000/gnet):高性能且轻量级的 Go 网络框架
* :white_check_mark: [ants](https://github.com/panjf2000/ants):高性能的 Go 协程池,已在字节跳动的线上使用

### 2019年9月15号添加
---
#### magiclu(青岛) - [Github](https://github.com/MagicLu550),[博客](http://blog.noyark.net)
* :white_check_mark: [plugin4j](https://github.com/MagicLu550/plugin4j):简易的统一规范插件开发框架
* :white_check_mark: [JSmod2](https://github.com/jsmod2-java-c/JSmod2-Core):基于游戏 SCP: 秘密实验室创作的Java插件开发框架
* :white_check_mark: [edclass4j](https://github.com/MagicLu550/edclass4j):基于 AES 加密的字节码加密解密API和远程授权控制程序
* :white_check_mark: [oaml](https://github.com/noyark-system/noyark_oaml_java):oaml 配置文件规范解析器

### 2019年7月7号添加
---
#### andyesfly - [Github](https://github.com/andyesfly)
* :clock8: [dipiper](http://dipiper.tech): 基于 Node.js 的财经数据接口包,为量化投资提供数据来源,满足金融量化分析师和学习数据分析的人在数据获取方面的需求

### 2019年7月5号添加
---
#### ddzy(东莞) - [Github](https://github.com/ddzy)
* :white_check_mark: [fe-necessary-book](https://github.com/ddzy/fe-necessary-book):为前端开发者提供的`优质书籍`和程序员们的`码农长寿指南`(***pdf***)

### 2019年6月15号添加
---
#### ICKelin(深圳) - [Github](https://github.com/ICKelin)
* :white_check_mark: [Notr](http://www.notr.tech):独立开发的内网穿透服务

#### Akkariin - [Github](https://github.com/kasuganosoras), [博客](https://blog.natfrp.org/)
- :white_check_mark: [Cloudflare Workers Blog](https://blog.natfrp.org/):利用 Cloudflare workers 边缘计算服务和 Github Pages 实现的无服务器博客系统 - [更多介绍](https://github.com/kasuganosoras/cloudflare-worker-blog)
- :white_check_mark: [Sakura Frp](https://www.natfrp.org/):基于 Frp 的免费内网穿透平台
- :white_check_mark: [Pigeon](https://github.com/kasuganosoras/Pigeon):轻量化的留言板 / 记事本 / 社交系统 / 博客

### 2019年5月21号添加
---
#### ChineseBQB - [Github](https://github.com/zhaoolee/ChineseBQB)
- :white_check_mark: [ChineseBQB](https://zhaoolee.github.io/ChineseBQB/):中国人聊天表情包大集合, 收录表情包的仓库, 所有收录的表情包均可在线查看下载! - [更多介绍](https://github.com/zhaoolee/ChineseBQB/blob/master/README.md)

---
#### CloudOpenDevOps - [Github](https://github.com/opendevops-cn/opendevops)
- :white_check_mark: [opendevops](http://www.opendevops.cn):CODO 是为用户提供企业多混合云、自动化运维、完全开源的云管理平台 - [更多介绍](https://github.com/opendevops-cn/opendevops)

### 2019年4月20号添加
---
#### xiaohulu - [GitHub](https://github.com/blocklang)
* :white_check_mark: [BlockLang-Installer](https://github.com/blocklang/blocklang-installer):自动化部署工具,专用于部署 Spring boot 项目

### 2019年4月19号添加
---
#### xianfeng92 - [Github](https://github.com/xianfeng92)
* :white_check_mark: [Love-Ethereum](https://github.com/xianfeng92/Love-Ethereum):关于区块链技术的学习项目 - [更多介绍](https://github.com/xianfeng92/Love-Ethereum/blob/master/version/Frontier.md)

### 2019年4月15号添加
---
#### yutiansut - [Github](https://github.com/yutiansut)
* :white_check_mark: [QUANTAXIS](https://github.com/quantaxis/quantaxis):股票/期货/多市场的闭环解决方案

#### zhanghuanchong - [Github](https://github.com/zhanghuanchong)
* :white_check_mark: [icon-workshop](https://github.com/zhanghuanchong/icon-workshop):移动应用图标生成工具,一键生成所有尺寸的应用图标

### 2019年4月12号添加
---
#### star7th(深圳) - [Github](https://github.com/star7th)
* :white_check_mark: [ShowDoc](https://www.showdoc.cc/):非常适合 IT 团队的在线API文档、技术文档工具 - [更多介绍](https://github.com/star7th/showdoc)

### 2019年4月11号添加
---
#### Wang Shidong - [Github](https://github.com/wsdjeg)
* :white_check_mark: [SpaceVim](https://spacevim.org/):模块化、支持多种编程语言的 Vim 开发环境 - [更多介绍](https://github.com/SpaceVim/SpaceVim)

#### Aquanlerou - [Github](https://github.com/aquanlerou), [博客](https://blog.eunji.cn)
* :white_check_mark: [WeHalo](https://github.com/aquanlerou/WeHalo):WeHalo 简约风 的微信小程序版博客 :sparkles:

#### Qeesung - [Github](https://github.com/qeesung), [微博](https://www.weibo.com/qeesuny)
* :white_check_mark: [Image2ASCII](https://github.com/qeesung/image2ascii.git) : 图片转化为 ASCII 码的命令行工具
* :white_check_mark: [ASCIIPlayer](https://github.com/qeesung/asciiplayer) : 图片,GIF,视屏 ASCII 转化播放命令行工具

#### 袁慠棱 - [Github](https://github.com/alengYuan), [博客](http://slothindie.org/)
* :x: [LemonTea](http://lemontea.slothindie.org/):极简且特别的静态网站生成器 - [更多介绍](http://lemontea.slothindie.org/book/index.html)


================================================
FILE: README.md
================================================
## 中国独立开发者项目列表
聚合所有中国独立开发者的项目

### 子版面
- [程序员版面](./README-Programmer-Edition.md):使用需要命令行或写代码
- [游戏版面](./README-Game.md):都是游戏

备注:您当前查看的是主版面,收录的产品是打开即用,和子版面中的产品类型不同。

**1. 为什么有这个表**
作为开发者其实比较好奇其他人在做什么业余项目(不管目的是做到盈利/玩票/试试看)
所以特意建了这个库。欢迎各位开发者把自己的项目加进来~ 发 Pull Request 或 Issue 即可 <br/>
(入选标准:必须是网站或App,不能是开发者工具或论坛型网站)

**2. 项目有 3 种状态**

| 开发中 | 已上线 | 已关闭或缺乏维护 |
|--------|--------|--------|
| :clock8: | :white_check_mark: | :x: |

## 3. 项目列表

### 2026 年 3 月 18 号添加

#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)
* :white_check_mark: [socialplugarchive.com](https://www.socialplugarchive.com):全球首个针对 SocialPlug 的欺诈证据存档库。通过 SEO 和结构化数据,公开披露其虚假交付、退款拖延及欺诈模式,致力于保护开发者与营销人员免受数字资产诈骗。

### 2026 年 3 月 17 号添加

#### lkunxyz - [Github](https://github.com/lkunxyz)
* :white_check_mark: [Extension聚合平台](https://aiextension.ai):AI相关的extension聚合平台,免费无限提交

#### damotiansheng - [Github](https://github.com/damotiansheng)
* :white_check_mark: [Photo Animate AI](https://photoanimate.org/):利用人工智能动画技术,将静态照片转化为动态、逼真的视频

#### Moresl - [Github](https://github.com/Moresl)
* :white_check_mark: [ImageMinify](https://github.com/Moresl/ImageMinify):轻量级图片批量压缩工具,支持 JPEG/PNG/WebP,基于 C# WPF 开发,免费开源


### 2026 年 3 月 16 号添加

#### qqhaosao(广州)
* :white_check_mark: [mpeg to mp3](https://mpegtomp3.online/):免费将.mpeg/.mpg格式的视频文件转换为.mp3格式的文件,无需注册,无需登录,本地执行,注重隐私保护。

### 2026 年 3 月 15 号添加

#### Eric(浙江) - [Github](https://github.com/erickkkyt)
* :white_check_mark: [WMHub](https://wmhub.io/):一体化 AI 创作工作空间,支持视频、图像与 3D 生成,帮助团队更快产出高质量媒体资产。

#### 阿健(杭州) - [Github](https://github.com/hugh2nd), [博客](https://parseword.net/blog)
* :white_check_mark: [Parseword](https://parseword.net):聚合多种经典每日单词谜题

#### damotiansheng(广州) - [Github](https://github.com/damotiansheng)
* :white_check_mark: [Deep Nostalgia AI](https://deep-nostalgia-ai.com/):借助人工智能照片动画,将家庭照片转变为引人入胜的动画视频,为珍贵的回忆注入活力的网站

#### newbe36524(福建) - [Github](https://github.com/newbe36524)
* :white_check_mark: [Hagicode](https://hagicode.com/):用 OpenSpec 工作流、多 Agent 多实例并行、Hero Dungeon 游戏化重新定义 AI 编码体验

#### 我是欧阳
* :white_check_mark: [地理占星工具](https://astrocarto.net):用户输入出生日期、出生时间和出生地点后,可以直接生成一张全球地理占星图,把不同行星的 AS / DS / MC / IC 线投射到世界地图上,用来比较哪些城市更适合居住、工作、旅行、短住或做人生阶段选择。我做这个项目,主要是因为现有同类工具对普通用户不太友好:要么界面比较老,要么只给一张图、不解释结果,第一次接触的人很难真正用起来。所以这个版本更强调“可直接使用”和“降低理解门槛”

### 2026 年 3 月 14 号添加
#### maowei8888 - [Github](https://github.com/maowei8888)
* :white_check_mark: [BookletAI](https://bookletai.org/):面向普通用户的小册子 AI 工具,可自动调研、写作并生成排版好的 booklet 页面。

### 2026 年 3 月 13 号添加

#### asui(泉州) - [Github](https://github.com/xingxingc)
* :white_check_mark: [看图识梗](https://github.com/xingxingc/stray_avatar/raw/main/assets/qrcode_ktsg.jpg):看图猜词语小程序 - [更多介绍](https://developers.weixin.qq.com/community/develop/doc/000026ee8ecd381fc6c45be8c6b00c)

#### Picaro
* :white_check_mark: [Image to Video AI](https://imagetovideoai.pro/):将静态图片生成视频的 AI 工具

#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [Markdown to PDF Bot](https://mdpdf.xyz):可以把含表格/公式的 Markdown 消息渲染成 PDF 的 Telegram 电报机器人,对于在 Telegram 里玩OpenClaw的朋友会非常有用。

#### hwlvipone - [Github](https://github.com/hwlvipone)
* :white_check_mark: [Kling Motion Control](https://kling-motion-control.com/):AI Motion Transfer with Kling 3.0

#### my19940202(上海) - [Github](https://github.com/my19940202)
* :white_check_mark: [macLaunchpads macOS 26 的最佳启动台替代品](https://maclaunchpad.aizeten.me/):macOS 26启动台改版不习惯?那就直接访问 maclaunchpad.aizeten.me 回到最初的感觉


### 2026 年 3 月 12 号添加

#### zhangxiaoyuan2025 - [Github](https://github.com/zhangxiaoyuan2025)
* :white_check_mark: [OutfitSwap Studio](https://outfitswapstudio.com/):AI 换装 / 虚拟试衣工具,支持 AI Clothes Changer、Virtual Try-On 和 Outfit Swap,上传照片即可生成换装效果

#### bytevirts - [Github](https://github.com/bytevirts)
* :white_check_mark: [Vibe Video](https://vibevideo.app):面向普通用户的 AI 视频生成网站,支持文生视频、图生视频、参考图生视频和电影化镜头控制,适合创作者和营销团队快速产出视频

### 2026 年 3 月 11 号添加

#### dagouzhi(成都) - [Github](https://github.com/htyf-mp-community), [官网](https://mp.dagouzhi.com/)
* :white_check_mark: [红糖云服](https://apps.apple.com/us/app/%E7%BA%A2%E7%B3%96%E4%BA%91%E6%9C%8D/id1544048353):自由开放的小程序容器 App,可动态加载小程序和小游戏,实现一套代码发布即生效

#### 金川(上海) - [Github](https://github.com/mrchen1225)
* :white_check_mark: [AI LipSync](https://lipsyncx.com):对口型视频生成工具,支持长视频翻译

### 2026 年 3 月 9 号添加

#### maowei8888 - [Github](https://github.com/maowei8888)
* :white_check_mark: [BookletAI](https://bookletai.org/):AI 生成小册子(免费)可自动研究网络、配图并生成任何主题的综合在线书籍

#### LeiDell(广安) - [Github](https://github.com/leidelltech), [博客](https://blog.leidell.cn)
* :white_check_mark: [表极客手表应用商店](https://watchgeek.cn):汇聚智能手表应用资源,打造一站式智能手表应用资源平台,提供应用下载、教程分享和技术支持

#### jankarong - [Github](https://github.com/jankarong)
* :white_check_mark: [FillPDFfromExcel](https://fillpdffromexcel.com/):将 Excel 数据填入 PDF 的工具

### 2026 年 3 月 7 号添加
#### rongseng716-debug - [Github](https://github.com/rongseng716-debug)
* :white_check_mark: [kling](https://www.kling4.co?utm_source=github&utm_medium=description&utm_campaign=kling4):AI 生成视频,支持多种 kling 模型

#### yzqzy - [Github](https://github.com/yzqzy)
* :white_check_mark: [交易信标 | TradeSignal](https://tradersignal.org/):A 股投资分析桌面工具,价值为基、趋势为策。盘后复盘看板、智能筛选、个股深度分析、交易计划与组合管理;集成 AI 股票分析(多模板多数据源),支持 14 天免费体验 - [更多介绍](https://tradersignal.org/signal-client)

#### Gingiris - [Github](https://github.com/Gingiris), [博客](https://gingiris.com)
* :white_check_mark: [AI 产品全球发布行动指南](https://github.com/Gingiris/gingiris-launch):基于 AFFiNE 等现象级产品实战复盘,含 Product Hunt 发布 SOP、KOL 合作、UGC 增长策略
* :white_check_mark: [B2B 产品增长指南](https://github.com/Gingiris/gingiris-b2b-growth):从 PMF 验证到生态化增长的完整操作手册,整合 HeyGen、Deel、Vercel 等标杆案例
* :white_check_mark: [开源项目发布整合营销手册](https://github.com/Gingiris/gingiris-opensource):GitHub Star 增长策略、KOL 合作清单、Reddit 运营与海外群组分发完整 SOP

### 2026 年 3 月 6 号添加

#### reake (上海)
* :white_check_mark: [MakeTimestamp](https://maketimestamp.com):时间戳转换/计算工具箱(48+),浏览器本地处理,支持秒/毫秒/微秒/纳秒,UTC/本地切换。

#### cf12436(深圳)
* :white_check_mark: [Videodance](https://videodance.cc/):AI 视频生成器,基于 Seedance 2.0,提供原生多镜头叙事、音视频同步和 2K 影院级画质输出。无需任何剪辑经验,即可创作出人物形象一致、对话完美同步的专业电影级视频。

#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)
* :white_check_mark: [twittetize](https://twittetize.com/):AI 驱动的 X(Twitter)自动化增长平台,将监控竞争对手、发现趋势、AI 生成内容、规划发布和用户触达整合在一个平台中,帮助用户实现可预测的增长。

#### ShaodongDev - [Github](https://github.com/ShaodongDev)
* :white_check_mark: [SaaSTool.site](https://saastool.site/):SaaS 工具导航站和收录平台,配备 AI 自动填写功能,帮助初创 SaaS 增加 DR 和曝光

### 2026 年 3 月 4 号添加

#### jankarong - [Github](https://github.com/jankarong)
* :white_check_mark: [AITrendingPrompt](https://aitrendingprompt.com/):精选 AI 提示库,为创作者和营销人员提供热门、实用的 AI 提示

#### 刀刀 - [Github](https://github.com/daodao97)
* :white_check_mark: [EmojiFinder.cc](https://emojifinder.cc/):Emoji 搜索复制工具,收录 1780+ 表情,支持 20 种语言,一键复制

#### HaydenBi - [博客](https://haydenbi.com)
* :white_check_mark: [Pixalice](https://pixalice.com):AI 生图与视频生成平台,内置多个图片模板,一键生成,支持 Nano Banana、SeeDream、Sora2 等多种模型

### 2026 年 3 月 3 号添加

#### 袁慠棱 - [Github](https://github.com/alengYuan)
* :white_check_mark: [Rhythm (聆声)](https://aleng-yuan.itch.io/slothindie-rhythm):适合在 Windows 上进行后台播放的简易本地音乐播放器

### 2026 年 3 月 2 号添加
#### 我是欧阳 - [Github](https://github.com/iamouyang21)
* :white_check_mark: [Nano Banana 2](https://nanobanana-2.xyz):AI 生图工具,Nano Banana 2 是面向设计师、运营和内容创作者的在线 AI 生图工具,支持「预设工坊 + 自由创作」双模式,内置多种风格模板与 50+ 涂鸦字体,输入文字即可快速生成高质量图片;同时支持多语言文字渲染、参数可调、浏览器即开即用。最新上线的批量生图功能可一次生成多张或多版本图片,适合海报、电商素材和社媒内容的规模化生产,显著提升出图效率

### 2026 年 3 月 1 号添加
#### hanshs474 - [Github](https://github.com/hanshs474)
* :white_check_mark: [nano banana2](https://www.ainanobanana2.pro):AI 图片生成工具,支持 Nano Banana 系列模型

#### mundane - [Github](https://github.com/mundane799699)
* :white_check_mark: [aihugvideo.app](https://aihugvideo.app):AI Hug 是最好的 AI 拥抱视频生成网站🤗,可以在几分钟内轻松构建您的 AI 拥抱视频

#### sonicker(上海) - [GitHub](https://github.com/cursorzephyr002-lgtm)
* :white_check_mark: [Sonicker](https://www.sonicker.com):AI 语音克隆平台,3 秒克隆任何声音,保留情感和口音。支持中英日韩等 10 种语言的语音合成,提供 50+ 预设声音库和 AI 声音设计功能

#### kristoff
* :white_check_mark: [Nano Banana AI](https://nano-banana.love/):AI 生图工具

#### ZhuccIvan - [Github](https://github.com/ZhuccIvan)
* :white_check_mark: [ShopAI](https://vipvan.cc/shop-ai):生成电商详情图,简化商家操作复杂度

### 2026 年 2 月 28 号添加

#### azt1112 - [Github](https://github.com/azt1112)
* :white_check_mark: [Seedance 2 Pro](https://seedance2pro.pro/):多模态 AI 视频生成平台。支持文本+多张图片+视频+音频参考同时输入,实现角色一致性、多镜头叙事、音频同步动作、精准镜头控制。几分钟生成商业级短视频,适合营销、电商、社交媒体、品牌故事、预可视化等高频内容创作需求。比传统文生视频更可控、更接近导演级表达

#### yuhoayu-arch - [Github](https://github.com/yuhoayu-arch)
* :white_check_mark: [Speakoala](https://speakoala.com/zh):集“全格式兼容、超自然人声、沉浸式听感”于一体的智能语音助手,能将网页、邮件及 PDF/Word 等本地文档一键转化为媲美真人的多国语言朗读,配合词级高亮同步、背景白噪音及最高 4 倍速调节,解放用户双眼,让深度阅读在通勤、家务或健身的碎片化场景中焕发新生

#### Cyan (北京) - [Github](https://github.com/ShaodongDev)
* :white_check_mark: [DingTou APP](https://dingtouapp.org/):美股/ A 股基金定投计算器,个人投资理财工具,给大家资金出海提供一条路径。主要功能是回测美股和 A 股基金的投资,以及可视化收益,用于对比和复盘决策 - [更多介绍](https://dingtouapp.org/about)

### 2026 年 2 月 27 号添加

#### emptykid(北京) - [GitHub](https://github.com/emptykid)
* :white_check_mark: [打字鸭](https://www.daziya.com):免费中文打字练习在线平台,提供3000+的盲打课程,科学的打字课程设计,拼音输入法、汉语拼音、诗词歌赋、经典名著、背英文单词、知识百科,练习打字同时收获更多,结合趣味化教学体验。

#### AlvyVV - [GitHub](https://github.com/AlvyVV)
* :white_check_mark: [MemoTune](https://memotune.com):AI 音乐生成工具,支持文字转歌曲、歌词转歌曲,并提供 AI 人声生成、声音模型训练、AI Cover 等功能。 用 AI 把你的文字或歌词变成完整的歌曲,免费开始,无需信用卡。支持 10+ 音乐风格(流行、说唱、R&B、民谣、摇滚、电子等)。支持中文、英文、日语、韩语等 10+ 语言。可训练专属 AI 声音模型。

#### sonicker(上海) - [GitHub](https://github.com/cursorzephyr002-lgtm)
* :white_check_mark: [Sonicker](https://www.sonicker.com):AI 语音克隆平台,3 秒克隆任何声音,完美保留情感和口音。支持中英日韩等 10 种语言的语音合成,提供 50+ 预设声音库和 AI 声音设计功能,免费开始使用。

### 2026 年 2 月 26 号添加

#### Cyan (北京) - [Github](https://github.com/ShaodongDev)
* :white_check_mark: [UN招聘网](https://unzhaopin.com/):🇺🇳 联合国招聘信息聚合网站,给大家**出海**多提供一条路径。我改进了官方的 UI 、做了岗位职称等翻译、嵌入了 AI 驱动的 JD 详情页、支持中英双语,方便中文母语者申请联合国相关的工作

#### lkunxyz - [Github](https://github.com/lkunxyz)
* :white_check_mark: [Seadance 2.0 AI](https://seedance2.so):由 Seedance 2.0 驱动的创作平台,整合全球顶尖模型,通过统一积分系统为创作者、营销人员和机构提供影院级 1080p 视频制作(含同步音频)、导演级逐帧剪辑和高保真图像生成服务。

#### sherlockouo(成都)
*  :white_check_mark: [LeafResume](https://leaf-resume.com/):LeafResume 极简·高效·性价比之王,专注于简历编写导出,考研复试、校招、社招跳槽找工作必备!Leaf-Resume 专注极简高效,内置 AI 深度润色与分享、评论Review 功能,助你精准击中 HR 痛点。免费版支持无水印导出,随时随地开启专业排版。🔥 宠粉福利:仅需 9.9 元即可上手 Pro 全功能,解锁 AI 深度优化,这一波性价比真绝了!

### 2026 年 2 月 25 号添加

#### elng12(柳州)
*  :white_check_mark: [Pinpoint Answer Today](https://pinpointanswertoday.app/):Pinpoint Answer Today 是你每日快速了解 LinkedIn Pinpoint 的指南。我们会发布经过核实的今日 Pinpoint 答案,并提供简短清晰的解析,让你几秒钟就能拿到答案、保持连胜——就算今天的 Pinpoint 有点难也不怕

#### Reake(上海)
* :white_check_mark: [SVGView](https://svgview.com/?utm_source=github):在线 SVG 查看、压缩、格式转换工具,全程浏览器本地处理,不上传文件  

#### Cyan(北京) - [Github](https://github.com/ShaodongDev)
* :white_check_mark: [NewTool.site](https://newtool.site/):AI 驱动的工具导航站和收录平台,帮助初创工具增加 DR、被看到 - [更多介绍](https://newtool.site/about)

### 2026 年 2 月 24 号添加
#### mickey(杭州) - [github](https://github.com/mymickey/kidblocker)
* :white_check_mark: [KidBlocker](https://kidblocker.com):我家孩子看 YouTube 的时间太长了,所以我想找个浏览器扩展(browser extension)来屏蔽它。在 Chrome 网上应用店没找到满意的,我就自己做了一个——在这里分享出来,看看能不能帮到其他人。

### 2026 年 2 月 23 号添加
#### jjleng(美国) - [Github](https://github.com/jjleng)
* :white_check_mark: [Gliss](https://gliss.pro):AI Music Agent,用于歌曲生成、翻唱、MIDI 编辑、母带处理与封面艺术;可生成免版税人声与伴奏,并支持精确分轨/元素提取。

#### my19940202(上海) - [Github](https://github.com/my19940202)
* :white_check_mark: [Download Pilot - 自动整理下载 + 智能命名插件](https://www.downloadpilot.top/zh):Chrome 扩展:按文件类型自动把下载整理进文件夹,并支持按照网页上下文 乱码/哈希文件名变成可读名称,让下载夹整洁、好找、可搜索


### 2026 年 2 月 21 号添加

#### Remember(HangZhou) - [Github](https://github.com/wuqinqiang)
* :white_check_mark: [Reloop - AI 转录英语,日语,韩语,法语,德语等(iOS)](https://apps.apple.com/cn/app/reloop-ai%E8%BD%AC%E5%BD%95%E4%B8%8E%E9%87%8D%E5%A4%8D/id6752853818):多语言听力 App,支持导入 Podcast,YouTube 的链接,提供双语字幕,跟读练习,深入解析句子结构等功能。支持把文本材料合成音频听力材料,同时用户可以用自然语言描述的方式快速导入相关的 YouTube 视频

### 2026 年 2 月 20 号添加

#### HuzefaUsama25 - [Github](https://github.com/HuzefaUsama25)
* :x: [FaceFinder](https://facefinder.id/):AI 人脸搜索和反向图像搜索工具

#### nanobanana-co - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [Seadance AI](https://seadanceai.net):视频与图像生成平台(由 Seedance 2.0 驱动),整合全球领先 AI 模型到统一工作流程,通过专为创作者、营销人员和机构设计的单一积分系统,可生成影院级 1080p 视频(自带同步音频),用导演级剪辑逐帧优化画面,并创作高保真图像。

### 2026 年 2 月 19 号添加

#### BC - [Github](https://github.com/cwingho)
* :white_check_mark: [粵語拼音網](https://cantonesepinyin.com/):專業粵語拼音轉換工具,即時將中文轉換為標準粵拼

#### yaowei - [GitHub](https://github.com/lumian2015)
* :white_check_mark: [MotionSeed](https://seedance-2.video):AI 视频生成平台,聚合 Sora 2、Veo 3.1、Seedance 2.0 等多个主流 AI 视频模型,支持文字生成视频、图片生成视频,无需分别注册各平台账号,注册即送免费额度。

#### iamouyang21
* :white_check_mark: [Graffiti Generator](https://graffitigenerator.io):生成涂鸦艺术,旨在降低涂鸦创作的门槛。它结合了 AI 绘画生成与传统的字体设计功能,让用户无需任何绘画基础,也能在几秒钟内创造出专业级的涂鸦作品。

### 2026 年 2 月 17 号添加

#### Leochens - [Github](https://github.com/Leochens)
* :white_check_mark: [FloatMemo 状态栏小本本](https://apps.apple.com/cn/app/FloatMemo/id6749236800):沉浸式速记与剪贴板管理工具(面向 Mac 平台),通过“不切屏”交互解决多任务场景下的注意力切换成本。支持全局悬浮速记、图文混排、快捷键调出剪贴板历史并一键粘贴或保存至笔记。

#### nanobanana-co - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [NovaImage](https://novaimage.ai):AI 图像与视频生成平台(以 Nano Banana Pro 为核心创意引擎),整合视觉设计与影视级视频制作 AI 模型于统一工作空间

### 2026 年 2 月 16 号添加

#### hanshs474 - [Github](https://github.com/hanshs474)
* :white_check_mark: [Seedance 2.0](https://www.seedance2.today):创作电影级 AI 视频,支持多个模型的图片视频生成网站

### 2026 年 2 月 15 号添加

#### Lucian(Guangzhou) - [Github](https://github.com/lucianLY)
* :white_check_mark: [steamvai](https://steamvai.com/):文案转视频,根据文案内容生产处优质的视频资源,叙事镜头、1080P 视频音频视频效果都不错

#### sagasu(上海) - [Github](https://github.com/s87343472)
* :white_check_mark: [OmniConvert](https://tools.sagasu.art/?utm_source=github&utm_medium=awesome-list&utm_campaign=chinese-independent-developer):文件格式和单位转换工具,浏览器本地处理,支持94种文件格式互转与345种单位换算,8种语言

### 2026 年 2 月 14 号添加

#### Jack - [Github](https://github.com/ThinkerJack)
* :white_check_mark: [GroAsk](https://groask.com/):macOS 菜单栏 AI 启动器,⌥Space 直达多个 AI(快捷键可自定义)

### 2026 年 2 月 13 号添加

#### Lucian(广州) - [Github](https://github.com/lucianLY)
* :white_check_mark: [steamvai](https://steamvai.com/):专注文案转视频,根据文案内容生产处优质的视频资源,叙事镜头、1080P视频音频视频效果都不错。

#### Yuzu-Peel(上海) - [Github](https://github.com/Yuzu-Peel)
* :white_check_mark: [CookLLM](https://cookllm.com/):带你从头训练一个 LLM

### 2026 年 2 月 12 号添加
####  托马(杭州)
* :white_check_mark: [Seedance 2.0 Video](https://seedance2.video):基于 Seedance 2.0 的 AI 视频生成和编辑平台

### 2026 年 2 月 10 号添加
#### Toolina(成都)
* :white_check_mark: [ImageDescriber](https://imagedescriber.dev/?utm_source=github):使用 AI 图像描述工具在几秒钟内描述图像内容。生成描述、提示词和 Alt 文本。免费试用——无需登录。

### 2026 年 2 月 9 号添加

#### yoga666996 - [Github](https://github.com/yoga666996)
* :white_check_mark: [Seedance 2.0](https://www.seedance2-video.com):创作电影级 AI 视频,Seedance 2.0 是字节跳动推出的革命性 AI 视频生成器(常见拼写 seeddance 2.0),支持多镜头叙事、1080p 电影级画质与音画同步

#### waiwaixzz - [Github](https://github.com/waiwaixzz)
* :white_check_mark: [visionchat.app](https://visionchat.app/):聊天辅助器,聊天时将对话文本转换成动态的表情和气泡,让聊天更精彩!

#### JohnsonZou(武汉) - [Github](https://github.com/coodersio)
* :x: [Print PDF Tool](https://print-for-figma.com):Figma 打印插件,Figma 中导出的PDF本身不适合印刷场景,色彩空间是RGB的,这个工具主要是导出能够直接用于印刷CMYK颜色格式的PDF - [更多介绍](https://print-for-figma.com/features/pdf-print)

### 2026 年 2 月 8 号添加

#### JohnsonZou(武汉)
* :white_check_mark: [Storyship](https://storyship.app/):将屏幕录像转为专业演示视频
* :x: [Video watermark remover](https://videowatermarkremover.co/):视频水印移除工具

#### hwlvipone - [Github](https://github.com/hwlvipone)
* :white_check_mark: [Create a Caricature of Me](http://create-a-caricature-of-me.com/):上传图片,生成GPT风格动漫头像

#### xbaicai0 - [Github](https://github.com/xbaicai0)
* :white_check_mark: [seedance2.0](https://seedance2.so):seedance 2.0 AI 视频生成工具
 * 参考图像可精准还原画面构图、角色细节
 * 参考视频支持镜头语言、复杂的动作节奏、创意特效的复刻
 * 视频支持平滑延长与衔接,可按用户提示生成连续镜头,不止生成,还能“接着拍”
 * 编辑能力同步增强,支持对已有视频进行角色更替、删减、增加



### 2026 年 2 月 7 号添加

#### 我是欧阳 - [Github](https://github.com/iamouyang21)
* :white_check_mark: [OpenClaw Skills](https://openclawskills.co/):OpenClaw 官方注册表目前托管了 3000+ 个社区构建的智能体技能(Skills),但内容较为杂乱。OpenClaw Skills 是一个经过精选和分类的第三方目录,旨在为开发者提供更干净、高效的检索体验。基于数据清洗从原始注册表中保留了 1705+ 个技能,主要特点包括:精选收录:剔除了加密货币/Web3/DeFi 内容、批量生成的垃圾条目以及重复项。安全筛选:尽可能过滤了涉及滥用、欺诈等潜在有害的技能(我们仍建议安装前审查代码)。专注质量:移除了非英语描述的条目,确保信息的可用性。对于正在寻找 OpenClaw 技能的开发者来说,这里是一个更易于发现和比较工具的入口。

#### xphoenix(山西) - [Github](https://github.com/hell0w0rld-litx)
* :x: [HEIC转JPG](http://www.heic2img.top):注重隐私的 HEIC 转换器。将 iPhone 照片转换为 JPG 格式。所有处理都在浏览器本地进行

### 2026 年 2 月 5 号添加

#### gellmoonly - [Twitter](https://x.com/gell_moon)
* :white_check_mark: [Hide Reader (微软商店链接)](https://apps.microsoft.com/detail/9NWGDGRFKGG1?hl=zh-cn&gl=CN&ocid=pdpshare):可以隐藏和仿真翻页的小说阅读器,支持txt, pdf, epub, mobi, azw, azw3, cbz等格式。也上架了 [苹果商店](https://apps.apple.com/cn/app/hide-reader/id6757635630?mt=12)

#### xphoenix(山西) - [Github](https://github.com/hell0w0rld-litx)
* :white_check_mark: [YT2Sub - YouTube 字幕提取下载工具](https://chromewebstore.google.com/detail/yt2sub-youtube-%E5%AD%97%E5%B9%95%E6%8F%90%E5%8F%96%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7/ekhefpommdifipkhbnjjegpimckjbami?hl=zh-CN&utm_source=ext_sidebar):下载 YouTube 视频字幕(支持 TXT/SRT/VTT)

#### 韩数 - [Github](https://github.com/hanshuaikang)
* :white_check_mark: [Owl 猫头鹰](https://owl.hanshutx.com/):小红书公众号在线敏感词检测工具。我做了半年自媒体之后才发现需要规避平台敏感词,但是之前用的工具停服了,市面上其他的需要登录或者关注他们的公众号才可以使用,于是我 vibe coding 了一个敏感词检测工具,词库是根据网上找的,精简下来有 6 万多个。用了 cloudflare 的开发者穷鬼套餐,所以每人每天限制 10 次,主要是防止第三方调接口把额度耗完大家都没得用,应该对于大多数创作者都是足够使用的了

#### wang1309 - [Github](https://github.com/wang1309)
* :white_check_mark: [fluxchat](https://fluxchat.org/):一站式 AI 功能聚合网站,包含 AI Image、AI Music、AI Video、AI chatbot 等功能

#### FrankLiBao - [Github](https://github.com/FrankLiBao)
* :white_check_mark: [AI人生系统](https://life-system-lyart.vercel.app):受网文"系统流"启发的 AI 游戏化个人成长平台,AI 自动派任务、经验值等级体系、六维属性雷达图 - [更多介绍](https://github.com/FrankLiBao/life-system)


### 2026 年 2 月 3 号添加

#### WRCoding - [Github](https://github.com/WRCoding)
* :white_check_mark: [NNG](https://nicknamegeneratorforgames.top/):输入想法,AI 生成各种类型昵称

### 2026 年 2 月 2 号添加

#### Ricky Lee(深圳) 
* :white_check_mark: [AppIconKitchen](https://www.appiconkitchen.com/?utm_source=github):最好用的免费 AI 应用图标生成器,专为开发者设计。一键导出 iOS、Android(支持自适应图标)和 Web/PWA 全平台资源,完美符合 App Store 和 Google Play 规范。

#### wangerblog - [Github](https://github.com/wangerblog)
* :white_check_mark: [家电耗电量计算器](https://www.energycalculator.online/):帮助用户分析家庭电器耗电情况,并使用 AI 给出省电建议

### 2026 年 1 月 30 号添加

#### Ivanvolt(武汉) - [博客](https://ivanvolt.com)
* :white_check_mark: [US Address Generator](https://usaddressgenerator.net):美国随机地址生成工具,支持一键生成包含街道、城市、州和邮编的真实格式地址,适合开发者进行系统测试或跨境业务模拟注册。
#### Mickey - [Github](https://github.com/mymickey)
* :white_check_mark: [TakeScreen](https://takescreen.com/):在浏览器中编辑各大平台的聊天软件的 App 聊天截图,如 WhatsApp, Telegram, Instagram 等等,并导出成高清截图

#### Ivanvolt(武汉) - [博客](https://ivanvolt.com)
* :white_check_mark: [US Address Generator](https://usaddressgenerator.net):美国随机地址生成工具,支持一键生成包含街道、城市、州和邮编的真实格式地址,非常适合开发者进行系统测试或跨境业务模拟注册。

### 2026 年 1 月 29 号添加
#### Sunny(深圳) - [Github](https://github.com/Sunny-by3)
* :white_check_mark: [Moyea Streaming Video Recorder](https://www.moyeasoft.com/downloader/streaming-video-recorder/):录制并保存主流网站流媒体视频以离线观看的工具 - [更多介绍](https://www.moyeasoft.com/downloader/)

#### 超能刚哥
* :x: [PictureKit](https://picturekit.app/):在浏览器中批量进行各种图片处理任务,不经过服务器,可构建为自动化工作流

#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [TranslateGemmaBot](https://t.me/TranslateGemmaBot):基于Google AI翻译模型TranslateGemma构建的Telegram翻译机器人,支持多语言互译

#### Poiybro
* :white_check_mark: [OSINT Tools](http://osinttools.me/):The comprehensive OSINT tools list for professionals. Explore our directory of best free resources for email OSINT, technical research, and data analysis. - [More](https://osinttools.me/about)


### 2026 年 1 月 26 号添加

#### qqhaosao(广州)
* :white_check_mark: [Heic To Png](https://heic-to-png.online/):免费将heic/heif格式的图片转换为png

#### Shawn(北京) - [Github](https://github.com/ShawnHacks)
* :white_check_mark: [CuteWallpaper.site](https://cutewallpaper.site/):支持裁剪下载的可爱壁纸网站

#### ZizheRuan - [Github](https://github.com/ZizheRuan), [博客](https://deepcreates.com/)
* :white_check_mark: [AI Just Better](https://aijustbetter.com/):AI 产品发布、宣传、推广平台,可免费提交产品,对同类产品进行横向对比

#### QingJ(西安) - [Github](https://github.com/QingJ01/), [博客](https://blog.byebug.cn/)
* :white_check_mark: [OneLook](https://onelook.byebug.cn/):Web 端思维导图工具。它摒弃了繁杂的 UI 干扰,结合了 Markdown 的流畅输入与 SVG 的高性能渲染,为您提供所见即所得的思考空间。数据完全存储于本地,隐私无忧。

### 2026 年 1 月 25 号添加

#### lshimin(武汉) - [Github](https://github.com/lshimin188)
* :white_check_mark: [SAM 3D](https://sam3d.org):基于 Meta 开源的 SAM 3D 模型,在线将图片中的对象分割转换为高精度 3D 模型

### 2026 年 1 月 24 号添加
#### suxiaoshuang2020-arch - [Github](https://github.com/suxiaoshuang2020-arch)
* :white_check_mark: [2d & 3d 文件格式转换器](https://www.3dpea.com/):2D&3D 文件格式转换器,支持包含:png to stl, obj to stl, webp to png 等
* :white_check_mark: [dicom to stl](https://dicom2stl.io/):将 dicom 医学扫描文件转为可打印的 3d stl 文件的工具

#### Justin3go(北京) - [博客](https://justin3go.com)
* :white_check_mark: [HUNT0 - Ship Early. Hunt Early](https://hunt0.com):产品发布平台,类似 ProductHunt,欢迎提交~


### 2026 年 1 月 21 号添加

#### lixiaofei162-code - [Github](https://github.com/lixiaofei162-code)
* :white_check_mark: [Agent – Claude Code skills 精选导航站](https://agent-skills.cc/):从收集的 6w+ agnet-skills 中精选出 1000+ 实用/有趣的 Claude Code Skills,持续更新中

#### KevinKaul
* :white_check_mark: [FastScribe](https://fastscribe.org):Convert MP3, MP4, WAV to text online. Audio transcription and video to text converter with 240 minutes free credit.

### 2026 年 1 月 20 号添加

#### monsoonw
* :white_check_mark: [MP3 to Text, TXT & SRT Converter](https://mp3totext.net):在线 MP3 转文本工具,可将 MP3 转为 TXT 或 SRT(字幕)

### 2026 年 1 月 19 号添加

#### peekaboo(重庆)
* :white_check_mark: [音频转文字](https://transcribetotext.org/):即时将音频转换为文字

#### JoyX(深圳)
* :white_check_mark: [Image To STL](https://imagetostl.io):将图像转换为 STL 文件以进行3D打印

#### Johnson Zou(武汉)
* :white_check_mark: [Cowork Skills](https://www.cowork-skills.com/):收集 Claude Cowork Prompt 模板
* :white_check_mark: [Figma 打印工具落地页](https://www.printery.app/):导出 CMYK 色彩模式、出血位、300 DPI 的可直接用于印刷的 PDF 文件
* :white_check_mark: [Square Face Icon Generator](https://www.squarefaceicongenerator.co/):生成方形脸图标工具

#### catscai - [Github](https://github.com/catscai)
* :x: [picfittool.com](https://picfittool.com/):图片处理网站,支持 App Store、Google Play 上架截图批量处理,证件照处理,通用裁剪、抠图、压缩、水印等功能

### 2026 年 1 月 17 号添加

#### James zhou - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [sotavideoai.com](https://sotavideoai.com/):最新的 AI 视频生成模型,创建具有同步音频、对话和效果的逼真且物理准确的视频。

#### wufuliang561 - [Github](https://github.com/wufuliang561)
* :white_check_mark: [Img2Img.net](https://img-2-img.net/):AI 图像到图像生成器,支持多种艺术风格转换,如吉卜力、赛博朋克、油画等。

#### Hugh - [博客](https://pixsprout.com/posts)
* :white_check_mark: [pixsprout.com](https://pixsprout.com/text-to-stamp):专注于生成复古橡皮印章效果的 AI 工具,支持文字生成印章、图片转印章及自动去底 - [更多介绍](https://pixsprout.com/image-to-stamp)

### 2026 年 1 月 16 号添加

#### Adrien Millot - [Github](https://github.com/camgraphe)
* :white_check_mark: [MaxVideoAI](https://maxvideoai.com/):多模型 AI 视频生成平台(文生视频 / 图生视频),提供公开的模型页面、提示词参考和示例,用于探索不同的视频生成模型。

#### Hugh (杭州) - [博客](https://squareface.app/blog)
* :white_check_mark: [Square Face Generator](https://squareface.app):致敬 Flash 时代的在线像素头像生成器,支持将设计的头像导出为 3D 纸模 (Papercraft) PDF 图纸 - [更多介绍](https://squareface.app/generators/square-face-papercraft-generator)

#### Jack (杭州) - [博客](https://karmictail.com/blog)
* :white_check_mark: [Karmic Tail Calculator](https://karmictail.com):基于命运矩阵体系的在线计算器,解析用户的业力尾巴与阿卡纳能量 - [更多介绍](https://karmictail.com/blog/what-is-my-karmic-tail)

#### upup熊猫(广州) - [Github](https://github.com/pandaupup)
* :white_check_mark: [Speaking Time Calculator](https://speakingtimecalculator.org):估算文本/演讲稿时长的小工具,无需注册,只需粘贴文本或输入字数,然后设置语速即可

### 2026 年 1 月 15 号添加

#### xingstarx - [Github](https://github.com/xingstarx)
* :white_check_mark: [AI人像移除工具](https://nanobananaeditor.cc/zh/remove-person-from-photo):从照片中移除不需要的人像,基于 Nano Banana 模型

#### ChenCong91 - [Github](https://github.com/ChenCong91)
* :white_check_mark: [BabyFilter AI](https://babyfilter.art):将用户上传的人物照转换为小时候的照片

#### jvxiao(Shenzhen) - [Github](https://github.com/jvxiao), [博客](https://jvxiao.cn)
* :white_check_mark: [图片工具箱](https://tools.jvxiao.cn):全平台支持的在线图片处理工具集,涵盖压缩、裁剪、AI 抠图、背景替换、格式转换与水印功能

### 2026 年 1 月 13 号添加

#### Y80 - [Github](https://github.com/Y80)
* :white_check_mark: [BMM](https://bmm.lccl.cc):你的专属书签管家,含管理员系统、用户系统,支持 AI 自动整理书签、标签,可自行部署

#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)
* :white_check_mark: [蒲公英](https://www.pugongying.ink/):反社交、无痕迹的极简表达平台,提供没有账号、没有互动、不留痕迹的平台,能低负担地表达想法,实现“说出来就放下”的需求,而非建立关系或社交联系

<!--
#### Eric(上海) - [Github](https://github.com/ChenCong91)
* :x: [BabyFilter AI](https://babyfilter.ai):将用户上传的人物照转换为小时候的照片
-->

#### 詹姆斯 周 - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [Videoeditai.app](https://videoeditai.app/):人工智能视频编辑平台,可通过文本提示转换视频内容,添加/删除对象,生成新相机角度,应用风格转移,修改照明

### 2026 年 1 月 12 号添加

#### BC - [Github](https://github.com/cwingho)
* :white_check_mark: [Subnet Mask Cheatsheet](https://subnetmaskcheatsheet.com/):子网掩码速查表和网络计算工具网站,提供 CIDR 计算器、IP 地址查询、VLSM 计算器等实用工具。
#### zongguowu - [Github](https://github.com/zongguowu)
* :white_check_mark: [Seedream 4.0 生成和编辑 Image Studio](https://seedream4.me/):最多上传 10 张图片或从提示开始。混合、增强和动画——所有这些都由 Seedream 4.0 的多模态模型提供支持。

#### hydemei - [Github](https://github.com/hydemei)
* :white_check_mark: [toolrain.com](https://toolrain.com/):AI导航站,可免费提交,收录处理快

#### businesszh - [Github](https://github.com/businesszh)
* :white_check_mark: [免费 AI 视频生成器 Sora 2](https://aisora2.com/):即刻创建逼真视频

### 2026 年 1 月 9 号添加

#### tzzp1224 - [Github](https://github.com/tzzp1224)
* :white_check_mark: [RepoReaper](https://www.realdexter.com/):Github AI 代码审计探员(基于 DeepSeek),面向计算机学生和初学者的源码阅读教育工具

#### wo-zx - [Github](https://github.com/wo-zx)
* :white_check_mark: [上码 (Upma)](https://upma.cn/):静态网站托管平台,专为国内开发者打造,支持 React / Vue / Next.js 一键部署与 CDN 全球加速

### 2026 年 1 月 8 号添加

#### BC - [Github](https://github.com/cwingho)
* :white_check_mark: [UV Index Today](https://uvindex.cc/):实时显示所在地紫外线指数的工具

#### allen2peace - [Github](https://github.com/allen2peace)
* :white_check_mark: [ChatFlowchart](https://chatflowchart.com/):通过语言描述生成图表,可编辑文案,可导出 PDF 或图片

#### xbaicai0 - [Github](https://github.com/xbaicai0)
* :white_check_mark: [zimageturbo](https://zimageturbo.com/):通过语言描述生成图片

#### Jack
* :white_check_mark: [YourRizzAI](https://yourizzai.com):AI 聊天分析工具,一键生成自然的约会对话和回复建议

### 2026 年 1 月 7 号添加
#### yzqzy - [Github](https://github.com/yzqzy)
* :white_check_mark: [TradeSignal](https://tradersignal.org/):AI 股票分析 + 专业盘后复盘工具|价值为基、趋势为策

#### Mr-ZhangBo - [Github](https://github.com/Mr-ZhangBo)
* :white_check_mark: [Easydown](https://www.easydown.org/en):下载 TikTok、YouTube、Twitter 视频

#### pillow(重庆市)
* :white_check_mark: [grok images](https://grokimages.org/):AI 图片平台,将想法变成视觉作品

### 2026 年 01 月 05 号添加

#### Brian Chan - [Github](https://github.com/cwingho)
* :x: [Collage87](https://collage87.com/):创建精美网格照片

#### WtecHtec(深圳) - [Github](https://github.com/WtecHtec), [博客](github.com/WtecHtec)
* :white_check_mark: [SnapWrite](https://snapwrite.xujingyichang.top/):专注微信公众号的 AI 自动排版工具。一键将文本转化为精美移动端布局,支持实时手机预览与富文本一键复制。

#### lizhichao  - [Github](https://github.com/lizhichao)
* :white_check_mark: [时间转换为工具](https://gorm.vicsdf.com/time.html):支持批量转换、填写备注、切换时区

### 2026 年 01 月 04 号添加

#### JentleTao - [Github](https://github.com/Hipepper)
* :x: [SecTech Vis 安全能力可视化](https://tipfactory.jentletao.top/):可视化安全对抗技术平台 - [开源地址](https://github.com/Hipepper/SecTech-Vis)

### 2026 年 01 月 03 号添加

#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz)
* :white_check_mark: [Sheas Frameg](https://frameg.spacetimee.xyz):开源光流法在线视频插帧工具 - [更多介绍](https://github.com/SpaceTimee/Sheas-Frameg)

#### WtecHtec(深圳)
* :white_check_mark: [WordMoment](https://wordmoment.xujingyichang.top/):专注于背单词的纯前端 Web 应用 - [开源地址](https://github.com/WtecHtec/WordMoment)

#### hackun666 - [Github](https://github.com/hackun666)
* :white_check_mark: [软著 Pro](https://ruanzhu.pro):AI 软著生成器,帮助用户生成软件著作权申请文档

### 2026 年 01 月 01 号添加

#### Flicker(成都)
* :white_check_mark: [VoiceAILabs](https://voiceailabs.com/):专业AI声音克隆平台,创建您的语音克隆角色

#### zhouzhili - [Github](https://github.com/zhouzhili)
* :x: [QQ相册下载器](https://blog.aitoolwang.com/qq/):三步完成QQ空间、QQ群相册照片批量下载到电脑,原图原视频下载,保留拍摄时间。

### 2025 年 12 月 31 号添加

#### wangxiaosu - [Github](https://github.com/wangxiaosu)
* :white_check_mark: [Text Behind Image](https://text-behind-image.org/):实现“字在人后”视觉深度,制作高级感海报

#### xiaolige 长沙
* :white_check_mark: [nano-banana中文站](https://www.nano-banana.cn/zh):提供提示词模板,帮助用户快速生成图片

#### lingglee(武汉) - [Github](https://github.com/lingglee)
* :white_check_mark: [authletter.com](https://www.authletter.com):委托信模板站,提供各种场景委托信模板,支持 AI 一句话生成委托信、编辑和下载

### 2025 年 12 月 29 号添加

#### jiyifeng(重庆) -
* :white_check_mark: [Upscale image](https://upscale-image.org/):增强和放大图像

### 2025 年 12 月 28 号添加

#### StarCityBro(长沙)
* :white_check_mark: [FeiHub](https://feihub.top):公开的飞书文档搜索,已收录包括:垂直小店、Gemini、AI产品、Claude Code、CPS、Sora、AI工作流、AI视频、AI短剧、AI漫剧、AI漫画、YouTube、小红书电商、电商选品、AI自媒体、n8n、私域运营、B站好物、外卖推客、RPA等 6000+的知识文档。

#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)
* :white_check_mark: [fuckpua](https://www.saynopua.com):用 AI 帮助识别和抵抗情感操控与PUA套路、提供分析和练习工具的心理防护平台

### 2025 年 12 月 26 号添加

#### LeeYuze - [Github](https://github.com/LeeYuze)
* :white_check_mark: [WhatsMyName](https://www.whatsmyname.cc/):OSINT 用户名搜索与可用性检查工具,可实时扫描 700+ 平台,验证账号存在与数字足迹(匿名、不记录搜索历史)。

#### 菩提尘埃(厦门) - [Github](https://github.com/waterlines)
* :white_check_mark: [外链管理系统](https://backlink.dreamthere.cn):SEO外链管理系统

### picaro - [Github](https://github.com/2002pipi)
* :white_check_mark: [FlowSpeech](https://flowspeech.io):文本转语音,声音接近人类

### 2025 年 12 月 24 号添加

#### nanobanana-co - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [Nano Banana Pro](https://nanobanana.co/zh):AI 图像与视频生成平台,支持精准区域编辑、照片修复、风格转换、多图融合、角色一致性保持及视频生成

#### Rock(上海)
* :white_check_mark: [Graffiti generator](https://www.graffitigenerators.com/):AI 街头涂鸦艺术生成器(基于 Nano Banana Pro)

### 2025 年 12 月 23 号添加

#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)
* :white_check_mark: [牛逼 Star](https://www.niubistar.com):面向开源开发者的 GitHub Star 互助与项目展示平台,让用户互相为项目点 “Star”,帮助开源项目获得真实曝光和更高关注度
* :white_check_mark: [Intent-Leads](https://www.intent-leads.com/):帮助企业自动发现和整理“高意图潜在客户”线索,基于社交媒体和公开平台行为数据(即正在主动寻找产品/服务的人)以便联系和转化的获客工具

#### tancky777 - [Github](https://github.com/tancky777)
* :white_check_mark: [LensGo AI](https://lensgoai.co/):AI 视频 & 图片创作,专注于动漫艺术风格的图片风格迁移或图片、视频制作
* :x: [Gemini Watermark Remover](https://geminiwatermark.net/):Gemini AI 图片、nano banana、nano banana pro 去水印

#### zhangchenchen - [Github](https://github.com/zhangchenchen)
* :white_check_mark: [music0](https://music0.org/):AI 音乐/音乐视频生成平台

### 2025 年 12 月 22 号添加

#### Yiann(大连) - [Github](https://github.com/taingh)
* :white_check_mark: [UniMusic AI](https://unimusic.ai):AI 音乐生成 - 根据你的描述一键生成专业完整的音乐

#### amierhan - [Github](https://github.com/amierhan)
* :white_check_mark: [nbpro.io](https://nbpro.io/):一站式 AI 图像与视频生成平台,整合了当前领先的图像与视频生成模型,包括 Nano Banana、Nano Banana Pro、sora2 等。平台内置智能提示词优化器,并提供大量真实可参考的生成案例,帮助用户创作高质量内容,生成的图片和视频均不带水印,适用于多种专业与商业场景

#### zhugezifang - [Github](https://github.com/zhugezifang)
* :white_check_mark: [颜值评分](https://howattractiveami.app/zh):AI 颜值测试
* :white_check_mark: [在线眼型测试](https://eyeshapedetector.app/zh):AI 眼型分析
* :white_check_mark: [面部年龄计算器](https://howolddoyoulook.app/zh):AI 面部年龄检测器

### 2025 年 12 月 21 号添加

#### azt1112 - [Github](https://github.com/azt1112)
* :white_check_mark: [GPT Image 1.5](https://chatgptimage15.com/):AI 图片生成网站,基于 GPT Image 1.5

### 2025 年 12 月 20 号添加

#### yoga666yoga888-lgtm - [Github](https://github.com/yoga666yoga888-lgtm)
* :white_check_mark: [Sora21](https://www.sora21.com/):视频生成网站,基于 Sora2 模型,高性价比

#### hwlvipone - [Github](https://github.com/hwlvipone)
* :white_check_mark: [palm reading online](https://palm-reading.app/):AI 看手相网站

#### allen2peace - [Github](https://github.com/allen2peace)
* :white_check_mark: [FluentDictation](http://fluentdictation.com/):使用任意 YouTube 视频练习英语听写、英语跟读能力

#### jankarong - [Github](https://github.com/jankarong)
* :white_check_mark: [AI YouTube 缩略图生成器](https://aithumbnailcreator.com/):生成 Youtube 缩略图,可免费下载,支持纯色或渐变背景

#### hwlvipone - [Github](https://github.com/hwlvipone)
* :white_check_mark: [ZestyGen](https://zestygen.com/):基于 Nano Banana Pro 的图片视频聚合网站

### 2025 年 12 月 18 号添加
#### jonbrown66 - [Github](https://github.com/jonbrown66/bananacanvas-ai)
* :white_check_mark: [BananaCanvas AI](https://bananacanvas-ai.vercel.app/): 前沿的创意工作区,结合了基于对话的 AI 交互和无限画布,用于多模态内容创作。

### 2025 年 12 月 16 号添加
#### Brian Chan
* :white_check_mark: [logo87.com](https://logo87.com):几秒钟创建专业的 favicon

#### Nico - [Github](https://github.com/yijianbo)
* :white_check_mark: [News In Simple](https://newsinsimple.com/):基于 AI 的英语学习新闻网站,提供初、中、高三级分级新闻及配套阅读、听力、词汇和测验素材

#### Dakuai - [GitHub](https://github.com/YananLee?tab=repositories)
* :white_check_mark: [Word Cloud Art](http://www.wordcloud.art/):词云生成器,支持AI词生成2k+模版丰富的颜色搭配方案

#### weiqingtangx - [GitHub](https://github.com/weiqingtangx)
* :white_check_mark: [LRC Generator](https://www.quicklrc.com/): 生成 LRC、SRT、TTML、WEBVTT 和 ASS 等字幕格式的网站,支持行级和词级时间戳。生成的字幕文件可用于音乐播放器、视频编辑器和主流流媒体播放器

### 2025 年 12 月 15 号添加
#### coderlei - [Github](https://github.com/acmenlei)
* :white_check_mark: [牛笔AI - 微信公众号排版工具_在线图文排版神器](https://niubi.codecvcv.com):基于 Markdown 和所见即所得编辑模式,提供精美主题样式,一键美化公众号文章排版、导出图文卡片,只需要编写一份内容就可以得到文章内容和图文卡片,免费使用

#### august - [github](https://github.com/august-xu)
* :white_check_mark: [Dunk Calculator](https://www.dunkcalculator.online/):Dunk Calculator - How High Do You Need to Jump to Dunk?
* :white_check_mark: [Tbsp to Cups Converter](https://tbsptocups.com/):Tablespoons to Cups Converter [Chart + Printable PDF]

#### RickyLee 
* :white_check_mark: [TankMate AI](https://tankmate.org/?utm_source=github):查询鱼能否混养。分析攻击性、pH 值和鱼缸尺寸,帮您规避混养风险

#### AppScreenshots
* :white_check_mark: [AppScreenshots](https://appscreenshots.net/):生成应用商店截图,支持 iOS、Android、Chrome、HarmonyOS 等平台,支持 3D 设备展示和 AI 驱动的 Mockup 创建工具

#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [极简AI生图](https://image.stockai.trade):AI 生图网站,完全免费、免登录、无广告、无水印


### 2025 年 12 月 14 号添加
#### yuhanw496-sketch - [Github](https://github.com/yuhanw496-sketch)
* :x: [YourGirlfriend.app](https://www.yourgirlfriend.app/):AI 伴侣(专注于对话与情感支持),提供自然流畅的聊天体验,适合缓解压力或日常陪伴
* :white_check_mark: [Hailuo AI](https://www.hailuoai.work/):AI 内容生成工具,无需剪辑软件,将创意快速转化为动画视频,简化视频制作流程
* :white_check_mark: [Nano Banana 2 AI](https://banananano2.ai/):AI 图像生成工具(支持角色一致性保持与多步工作流,兼顾速度与质量),适合快速产出专业视觉内容
* :white_check_mark: [Flux 2 AI](https://flux-2-ai.com/):AI 绘画工具(无需注册即可生成 2K-4K 高清图像),支持多模型切换,适合快速创意验证与设计

#### seven(沈阳)
* :white_check_mark: [视力测试](https://eyetestonline.org/): 视力测试(免费)包括视力(visual acuity)、色觉(color)、对比度(contrast)和视野(field screening)筛查

### 2025 年 12 月 13 号添加
#### Ivanvolt(wh) - [博客](https://ivanvolt.com)
* :white_check_mark: [Aluo AI](https://aluo.ai):AI 产品图生成与电商图片编辑工具
* :white_check_mark: [AiDirs](https://aidirs.best):探索并分享最佳人工智能工具

#### Toby(南京)
* :white_check_mark: [YoChanger](https://yochanger.com/):AI 换装,在线试衣间

### 2025 年 12 月 12 号添加
#### Ri_vai(sz)
* :white_check_mark: [Nano Banana Pro](https://applebanana.pro/):AI 图片生成、图片编辑网站

#### WtecHtec(s) - [Github](https://github.com/WtecHtec), [博客](https://wtechtec.com/)
- :white_check_mark: [PassScan](https://xujingyichang.top/):简历分析工具(AI驱动),支持人岗匹配、多维度人才画像分析

#### xxk1323(郑州)
* :white_check_mark: [ImagineGo](https://imaginego.ai):视频和图像模型聚合站,目前上线 10+ 模型

#### Wcowin(重庆) - [Github](https://github.com/Wcowin), [博客](https://wcowin.work/)
* :white_check_mark: [OneClip](https://oneclip.cloud/):剪贴板管理工具(专为 macOS 设计),支持多种格式内容管理,智能搜索和分类,让您的复制粘贴操作更加便捷高效 - [更多介绍](https://wcowin.work/blog/OneClip/)

#### Shawn(北京) - [Github](https://github.com/ShawnHacks)
* :x: [Screentell](https://screentell.com):录屏工具(低门槛),可以满足 90 %以上的录屏 DEMO 需求,特色支持手绘风格贴纸 - [更多介绍](https://x.com/ShawnHacks/status/1996480396637446197)

#### biboom(广州)
* :white_check_mark: [YouTube 字幕生成器](https://transcriptinprogress.online):将 Youtube 视频转为文字

### 2025 年 12 月 11 号添加
#### handsometong
* :white_check_mark: [Future Me AI](https://futuremeai.app/):专为儿童设计的 AI 职业肖像生成器。上传孩子照片,从 50+ 职业中选择,生成激发梦想的专业未来职业照片
* :x: [kirkify ai](https://kirkifyai.net/):将任意人脸变成 Kirkify 梗图

#### Leon(杭州) - [Github](https://github.com/fangweihao123)
* :white_check_mark: [LearnFlux](https://www.learnflux.net):AI 驱动的智能学习助手,为你生成个性化学习材料,让你以更少时间掌握更多知识。

### 2025 年 12 月 9 号添加
#### pillow(重庆) 
* :white_check_mark: [AI Voice Cloning](https://aivoicecloning.net):AI 声音克隆

#### BOS1980 - [GitHub](https://github.com/BOS1980)
* :white_check_mark: [Humanizadordeia.app](https://humanizadordeia.app/):将AI文本转化为自然人类写作。1)人性化处理,让 AI 文本更自然、更贴近人工写作与品牌口吻;2)检测服务,帮助识别潜在 AI 生成内容,提升合规与质量。支持多语种、极速处理、保留语义与风格。免注册体验 300 字,适合博主、营销团队、跨境站点、教育与企业内容运营。以先进模型(GPT、Claude、Gemini 等)驱动。

#### DeadWave(北京) - [Github](https://github.com/DeadWaveWave)
* :x: [Demo2APK](https://demo2apk.lasuo.ai):把 Gemini 做的 Demo 一键打包成APK - [项目开源地址](https://github.com/DeadWaveWave/demo2apk)

#### xbaicai0 - [Github](https://github.com/xbaicai0)
* :white_check_mark: [musci](https://musci.io/):AI 音乐生成,支持多语言

#### lkunxyz - [Github](https://github.com/lkunxyz)
* :white_check_mark: [videobackgroundremover](https://videobackgroundremover.io/):视频去背景

### 2025 年 12 月 7 号添加
#### ALioooon(南京)  
* :white_check_mark: [Address Generator](https://addressgen.top):随机地址生成工具(支持 40+ 国家/地区) — 随机生成结构化地址,适合测试/模拟注册/本地化展示

#### mztkn(深圳) 
* :white_check_mark: [云文档查找工具](https://www.cloudocs.top/):分享云文档的平台。定位是纯粹的分享平台。除了直接使用网站,还可以打开微信小程序“云文档查找工具”,输入关键词,就能找到心仪的文档。内容平台丰富,涵盖飞书云文档、Notion、语雀、FlowUS、金山云文档、腾讯云文档等众多平台的公开云文档

#### Xibobo - [Github](https://github.com/my19940202) [Twitter](https://x.com/xishengbo)
* :white_check_mark: [小红书笔记AI生成](https://www.red-note.top/zh/create):基于人设,使用多个AI生成小红书笔记,助力自媒体博主快速生成图文内容,提升个人IP搭建效率
  
### 2025 年 12 月 6 号添加
#### Victory - [Github](https://github.com/victorymakes) [Twitter](https://x.com/victorymakes)
* :white_check_mark: [launchsaas.org](https://launchsaas.org):最佳的 Next.js SaaS 模板,几个小时就能上线你的 SaaS 开始盈利

### 2025 年 12 月 4 号添加
#### Williams
* :white_check_mark: [AI Excel Translator](https://aiexceltranslator.com/):批量翻译 Excel 或 CSV 文档,支持 100+ 语言。

#### PlayerYK
* :white_check_mark: [SongGuru.AI](https://songguru.ai/):使用 AI 生成音乐、写歌词还可以分离音乐中的乐器和人声

#### ExtsBox
* :white_check_mark: [PromptGather](https://promptgather.io/):手工挑选的上千条视频、图片提示词,全部免费查看。可以直接复制使用,也可以用 AI 微调,生成图片、视频。

#### jzhone
* :x: [CheckAIBots](https://checkaibots.com):CheckAIBots 能检测 40+ 个AI爬虫是否在爬你的网站,一键生成屏蔽代码(nginx/Apache/Cloudflare)并计算能省多少带宽费

#### JL
* :white_check_mark: [CSVtoAny](https://csvtoany.com/):CSV 格式万能转换,CSV 格式转化一站式解决方案

#### 超能刚哥 - [Github](https://github.com/margox)
* :white_check_mark: [随身小记](https://smartnote.chat/):随身记事AI助理,可记账、记事、记物,并以时间线形式展示;支持语音快速创建记录。

### 2025 年 12 月 3 号添加
#### wang1309(深圳) - [GIthub](https://github.com/wang1309)
* :white_check_mark: [Story Generator](https://storiesgenerator.org/):故事创作工具平台(免费),支持故事、标题、诗歌、情节生成和导出,支持用户创作概览、用户故事广场功能
 
#### mingforpc(珠海) 
* :x: [PaperPrint](http://paperprint.officedocprint.com/):打印纸模版网站(免费),支持多种打印纸模版并且支持在线调整、预览、导出图片和PDF

### 2025 年 12 月 2 号添加
#### Selenium39(广州) - [Github](https://github.com/Selenium39)
* :white_check_mark: [E-ink](https://e-ink.me/zh):网页转电子书工具的平台(免费),支持将网页快速转换为多种电子书格式并在线阅读与编辑

#### 星舟(深圳) - [Github](https://github.com/lzzzzl)
* :white_check_mark: [ShowMeBestAI](https://showmebest.ai/):最全面的 AI 工具目录,包含 3632+ 个 AI 工具。为您的业务、创意和生产力需求找到完美的 AI 工具
* :white_check_mark: [DeepSong AI](https://deepsong.ai/):AI 生成音乐和歌曲,原创且免版税

### 2025 年 11 月 29 号添加
#### lianhr12(深圳) - [Github](https://github.com/lianhr12)
* :x: [AppIconGenerator](https://appicongenerator.org/):浏览器端 AI 驱动的应用图标生成器,隐私优先,支持 iOS/Android/Chrome Store 资源一键生成 - [更多介绍](https://appicongenerator.org/)

#### pekingzcc(北京) - [Github](https://github.com/zhangchenchen)
* :white_check_mark: [sora2 api](https://www.sora2api.org/): Sora2Api 通过统一 API 实现无水印的 Sora2视频生成, 低至 $0.1/ video

#### Chaowen(深圳) - [Github](https://github.com/tanchaowen84)
* :x: [VeriIA | Detector de ia](https://detectordeia.pro):面向西语世界的 AI 检测和抄袭检测工具,支持西班牙语和英语文本的 AI 使用率评估与句子级高亮标注,帮助在「使用 AI」与「保持原创与透明」之间找到平衡。

#### cg33(广州) - [Github](https://github.com/chenhg5)
* :white_check_mark: [Modern Mermaid](https://modern-mermaid.live):mermaid 代码编辑生成器(现代好看,拥有多种主题模板),帮你做更好看的文档
* :x: [Trendhub](https://trendhub.wowwwow.cn/):热点新闻过滤推送器,自定义过滤您的每天热点新闻,让你免受非重要热点新闻的干扰 - [Github](https://github.com/gotoailab/trendhub)

### 2025 年 11 月 28 号添加
#### Rico(重庆) - [Github](https://github.com/rico-c)
* :white_check_mark: [Voyagard](https://voyagard.com):AI 学术论文编辑器,有 AI 编辑,一键查重降重,AI推荐文献索引等功能, 帮助你完成从选题调研,文献索引并管理, AI协助撰写等功能,帮助你轻松完成论文撰写
* :white_check_mark: [优秀同传](https://interpreter.youshowedu.com):同声传译 APP,支持 21 国语言的实时语音翻译,同时也支持语音实时朗读, 支持AI面向音频总结思维导图并AI对话, 随时回看历史记录, 支持 iOS 安卓 Web 端, 是行业领先精准度的同声传译 APP

#### Lee - [Github](https://github.com/lkunxyz)
* :x: [ltx2](https://ltx2.video):基于 ltx2 模型的视频生成,支持最长 20 秒视频

#### ghost-him(青岛) - [Github](https://github.com/ghost-him), [博客](https://www.ghost-him.com)
* :white_check_mark: [ZeroLaunch-rs](https://github.com/ghost-him/ZeroLaunch-rs):Windows 智能启动器。极速、隐私优先,精通拼音与模糊匹配;可选本地 AI 语义检索,让错字与意图搜索也能秒速直达 - [更多介绍](https://zerolaunch.ghost-him.com)

### 2025 年 11 月 26 号添加
#### Light
* :white_check_mark: [Vintage Paper Texture Generator](https://papertexture.io/):Vintage Paper Generator | HD Kraft & Aged Textures

#### Carys - [Github](https://github.com/Caron77ai)
* :white_check_mark: [Banana Editor](https://bananaeditor.art):基于 Gemini 3.0 Pro 的免费 AI 图片编辑器,支持精确修图、背景替换、服装更换等功能,提供 3 个免费积分 + 每日签到可获 100+ 积分

#### klemperer - [Github](https://github.com/klemperer/binglish)
* :white_check_mark: [Binglish- AI桌面英语](https://github.com/klemperer/binglish):自动更换必应 Bing 每日壁纸,顺便学个单词(AI 生成相关解释、相关好句、语音说明等)。 点亮屏幕,欣赏美景,邂逅知识,聚沙成塔。

### 2025 年 11 月 25 号添加
#### fayecat - [Github](https://github.com/fayecat)
* :white_check_mark: [Floaty](https://www.floatytool.com/):让 macOS 任意窗口保持置顶的工具

#### amierhan - [Github](https://github.com/amierhan)
* :x: [banana-pro.com](https://banana-pro.com/):Banana Pro AI 图像、视频创作平台。整合了 Nano Banana Pro、Nano Banana 以及 Sora2 模型。它可以高效生成高分辨率图像(最高 4K)和流畅的视频,同时提供智能提示优化、角色一致性、对复杂场景的上下文理解等功能

#### huashengjieguo
* :white_check_mark: [免费在线硬件测试平台](https://volumeshader.org/zh):GPU 测试,屏幕测试,FPS 测试,网络测试,摄像头检测,声音测试,鼠标测试,键盘测试

#### flingyp(上海) - [Github](https://github.com/flingyp)
* :white_check_mark: [今天记了么](https://flingyp.online/posts/%E4%BB%8A%E5%A4%A9%E8%AE%B0%E4%BA%86%E4%B9%88.html):日常记录打卡目标的微信小程序。用科学打卡,让自律变成简单的日常 

#### lucen
* :white_check_mark: [online-timer](https://icebreaker-games.org/online-timer):在线会议计时器,让您的站会、研讨会和演讲保持高效,按时进行。

#### SoftRoyals
* :white_check_mark: [可愛い絵文字と顔文字](https://kawaiiemoji.com/): 可愛い絵文字と顔文字网站,精选的可爱表情符号和表情文字合集,用于SNS社交媒体和聊天消息。

### 2025 年 11 月 23 号添加
#### rosicky(杭州)
* :white_check_mark: [Nano Banana Pro](https://nanobananapro.art/):AI 图像生成和编辑工具,支持4k画质生成,集成多种图像风格模版.

### 2025 年 11 月 20 号添加
#### zhugezifang
* :white_check_mark: [公共网络记事本](https://share-text.org/):在线网络记事本,支持创建,以及链接和二维码分享

#### pandaupup(广州) - [Github](https://github.com/pandaupup)
* :white_check_mark: [Word to Time Calculator](https://wordtotime.org):根据稿子字数快速计算阅读,演讲,汇报时间的小工具

#### Eminlin(厦门) - [Github](https://github.com/eminlin), [博客](https://www.eminlin.com)
* :white_check_mark: [屿乐春城邮](https://www.springcitypost.cn):真实信箱代理,轻松管理您的信件 - [更多介绍](https://www.springcitypost.cn/zh-CN/qna)

#### JL
* :white_check_mark: [Compare Two Word](https://compare2word.com/): Word 文档在线对比工具,支持 Word, Excel, PDF, PPT, TXT,让文档比对变得简单、安全

### 2025 年 11 月 19 号添加
#### Ronald
* :x: [批量域名检查](https://domainschecker.top/):提供域名年龄、可用性、历史记录,DNS 解析等功能的免费工具,支持 1000+ 顶级域名,可批量检查域名, 无需注册的综合域名分析平台

### 2025 年 11 月 18 号添加
#### basulee(上海) - [Github](https://github.com/BasuLee)
* :white_check_mark: [Gif To Frames](https://giftoframes.com/):将 GIF 图转换为每一帧,支持生成雪碧图,支持反向合成多张图片为 GIF 图,可控制时间间隔及尺寸

#### levan(深圳) - [Github](https://github.com/L-Evan)
* :x: [trygempix2.pro](https://trygempix2.pro):Gempix2、nanobanana2、flux、veo3.1 视频工具站(Free)
* :x: [veo-ai.cloud](https://veo-ai.cloud):Veo 视频站(Free)
* :clock8: [iaiapp.org](https://iaiapp.org):AI App 导航站 + 工具站(开发中,Free)
* :clock8: [nanobanana2ai.art](https://nanobanana2ai.art):nanobanana2 模型壁纸工具站(开发中,Free)

### 2025 年 11 月 14 号添加
#### xiaoxiao(南昌)
* :white_check_mark: [小故事铺](https://storynook.cn/):故事平台,专为儿童及家庭设计,致力于为孩子们提供多样化、富有教育意义的睡前故事,帮助他们在轻松愉快的环境中提升阅读能力,激发想象力,并且培养良好的品德 - [Github 仓库](https://github.com/masterliangpeng/story)

#### zpng(北京) - [Github](https://github.com/zpng)
* :white_check_mark: [MakeManga](https://www.makemanga.ai/):AI 生成漫画,支持 Nano Banana 和 Seedream 4.0 模型,只需提供故事,剩下的分镜和角色生成等都交给 AI

### 2025 年 11 月 13 号添加
#### biboom(广州) 
* :white_check_mark: [在线图片处理工具](https://imageonline.online/zh):图片像素化工具(免费),提供智能图片切割等功能

#### zhang xinke - [Github](https://github.com/zxk1323)
- :white_check_mark: [fanfic generator](https://fanficgenerator.com/):AI 同人小说创作工具

#### xbaicai0 - [Github](https://github.com/xbaicai0)
- :white_check_mark: [sora2](https://sora2videogenerator.com/):sora2 视频生成工具,支持 story board

#### 老木棍(上海) - [Github](https://github.com/buhuijiaojiao/jianxiaopai)
- :white_check_mark: [简小派](https://jianlipai.com/):求职助手平台(AI 驱动),通过智能简历生成、岗位匹配、面试模拟、薪资分析和自动投递,帮助求职者系统性提升、全流程加速拿 offer - [更多介绍](https://docs.jianlipai.com/)

#### 刀刀 - [Github](https://github.com/sfss5362)
- :white_check_mark: [YTB Download](https://ytbdd.cc/):YouTube 下载工具(Windows平台,免费无广告),支持下载 4K 视频、音频提取和字幕保存 

#### amierhan - [Github](https://github.com/amierhan)
* :white_check_mark: [sara2.io](https://www.sara2.io) :AI 图像、视频一站式生成平台,内置Nano Banana、sora2 等优秀大模型。高效实现您的创意、告别多平台切换

#### House(珠海) [github](https://github.com/wosuxiongmao)
* :white_check_mark:  [ShotAI](https://shotai.org):一键生成多个 AI 模型的图片,方便对比效果

#### JohnnyXu(襄阳) - [Github](https://github.com/qwe00921)
* :white_check_mark: [AI 图片转视频站](https://photoanimate.net/):用图片生成视频的网站, 包括各种模板, 最新的视频模型, 后面还会加入多图片生成长视频功能

#### Yuan(广州)
* :white_check_mark: [Nano Banana AI](https://nano2image.com/):AI 图像生成和编辑工具(免费在线),2-5 秒生成高质量图像,支持文生图和图像编辑

### 2025 年 11 月 12 号添加
#### Amyang(美国) - [Github](https://github.com/AmyangXYZ)
* :white_check_mark: [Reze-Engine](https://reze.one): 原生 WebGPU 实现的动画 MMD 人物渲染引擎,除物理引擎外没有第三方库 - [Github](https://github.com/AmyangXYZ/reze-engine)

####  h3(广州) 
* :white_check_mark: [AI 图像站](https://www.gempix2.org):用 nanobanana 模型的生成&编辑网站

### 2025 年 11 月 11 号添加
#### monsoonw(杭州) 
* :white_check_mark: [Nano Banana 2](https://nanobanana-2.net):收录最新的 Nano Banana 2 模型推特,油管资讯,并第一时间提供 nano banana 2 模型体验

### 2025 年 11 月 10 号添加
#### xbaicai0 - [Github](https://github.com/xbaicai0)
* :white_check_mark: [musci](https://musci.io):一站式 music 生成平台 

#### randompaga - [Github](https://github.com/randompaga)
* :white_check_mark: [Sora 2](https://forvideo.ai/sora2):For Video AI 一站式视频生成平台,使用Sora 2、Sora 2 Pro、Sora 2 Storyboard、Veo 3.1、Veo 3、Wan 2.5、Wan 2.2、Kling AI、Hailuo AI、Midjourney Video创建带音频的视频。

#### amierhan - [Github](https://github.com/amierhan)
* :white_check_mark: [nanobana.net](https://github.com/1c7/chinese-independent-developer/issues/url):一站式 AI 图像、视频生成平台网站,集合了目前世界最先进的模型,如:Nano banana、sora2 等

### 2025 年 11 月 8 号添加
#### Ri-vai - [Github](https://github.com/Ri-vai)
* :white_check_mark: [ai world generator](https://aiworldgenerator.com/):用文本和照片生成自然风光视频的 AI 工具网站

#### nanobanana-co - [Github](https://github.com/nanobanana-co)
* :white_check_mark: [novavideo.ai](https://novavideo.ai/):使用领先的图片转视频 AI 模型和热门视频特效模板,将照片转化为视频

#### ncgg-cyber - [Github](https://github.com/ncgg-cyber)
* :white_check_mark: [gempix-2](https://gempix-2.org/):收录最新的 gempix-2 模型新闻,并第一时间提供 gempix-2(nano banana2) 模型体验

#### zhang xinke - [Github](https://github.com/zxk1323)
* :white_check_mark: [photo to prompt](https://phototoprompt.org/):将图片转化为提示词,以及图像生成

#### 菩提尘埃(厦门) - [Github](https://github.com/waterlines)
* :white_check_mark: [TAO tracker](https://taotracker.org):TAO 子网交易监控与快捷导航工具

### 2025 年 11 月 5 号添加
#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [Telegram AI助手](https://t.me/iMessageAI_bot):Telegram ChatGPT 机器人(完全免费、没有广告),GPT-4o-mini 模型,支持图片识别,在 Telegram 中给 @iMessageAI_bot 发消息即可使用。

#### Shawn (北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)
* :white_check_mark: [Syncvoice](https://www.syncvoice.ai/):声音克隆(超逼真),文本转语音,支持 8 种语言,不同语言转语音保留克隆声音的独特音色

#### xxk1323
* :white_check_mark: [ai image combine](https://aiimagecombine.com/) : AI 图像站,预设了一些场景的 prompt ,不用编写复杂的 prompt 直接使用

#### 翟应康(深圳)
* :white_check_mark: [Create Custom Graffiti Art Online ](https://graffiti-generator.org):自定义涂鸦艺术(免费,不限次数)

### 2025 年 11 月 4 号添加
#### ljxyaly(深圳)
* :white_check_mark: [Rednote Video Download](https://www.rednote-video-download.com):Rednote (小红书) 视频、图片去水印下载(免费、不限次数)

#### Roger Zhang (上海)
* :white_check_mark: [StreamWindow](https://apps.apple.com/cn/app/streamwindow/id6752313155?mt=12) : macOS 平台全新设计的 3D 窗口管理应用,基于轻量级 3D 办公理念,直观,所见即所得,拥有更漂亮、更炫酷的界面,丰富可玩性,增加乐趣。

#### 出逃向量(杭州)
* :white_check_mark: [厕所淘金](https://github.com/user-attachments/assets/c9dc2625-202b-4bb6-96af-7ed4e5d4c23c):带薪拉屎计薪器,记录你每一次拉屎摸鱼所得报酬,可视化每一次拉屎的价值 - [更多介绍](https://apps.apple.com/cn/app/toilet-pay/id6752701889)

### 2025 年 11 月 3 号添加
#### Ricky Lee(深圳) 
* :white_check_mark: [KidsBedroomIdeas](https://kidsbedroomideas.org/):AI 驱动的儿童房设计工具,根据孩子的年龄、兴趣和喜好颜色,即时生成个性化创意儿童房设计

### 2025 年 11 月 2 号添加
#### Lee - [GitHub](https://github.com/lkunxyz)
* :white_check_mark: [Seedream Image Generator](https://seedreamimage.com/):Seedream 图片生成

#### LexTang(上海) - [Github](https://github.com/lexrus)
* :white_check_mark: [SwiftyMenu](https://apps.apple.com/app/swiftymenu/id1567748223):Finder 扩展自定义菜单,脚本执行、快速打开各种命令行工具。
* :white_check_mark: [Sharptooth](https://apps.apple.com/app/sharptooth-bluetooth-hotkeys/id6748440814):快捷键开关 Mac 蓝牙设备,脚本触发,低电量提醒。
* :white_check_mark: [cmd+x](https://apps.apple.com/app/cmd-x/id6754665762):为 Mac 提供 command+x, command+v 剪切文件的功能。
* :white_check_mark: [LiveExtractor](https://apps.apple.com/app/liveextractor/id6746672642):导出实况照片里的照片和视频的小工具。
* :white_check_mark: [RegEx+](https://apps.apple.com/app/regex/id1511763524):调试正则表达试的 app。

### 2025 年 11 月 1 号添加
#### Yif(上海)
* :white_check_mark: [Magic Animal Generator](https://animalgenerator.net/):尽情发挥你的想象力 用 AI 混合两种动物,创造前所未见的新物种

### 2025 年 10 月 31 号添加
#### dodid
* :x: [ReadTube](https://apps.apple.com/cn/app/readtube-youtube-video-summary/id6752214777):Youtube 视频转文字总结、幻灯片总结、AI 优化文字稿

### 2025 年 10 月 30 号添加
#### zxcHolmes
* :white_check_mark: [FilingInsight](https://filing-insight.com/):快速解读美股财报的 AI 工具,1 万多份财报解读,多语言支持,免费阅读

#### KryoWang(广州)- [Github](https://github.com/wangxiaosu)
* :white_check_mark: [image-to-sketch](https://www.imagetosketch.app/):图片转素描 AI 小工具

#### SparkHo(广州) 
* :white_check_mark: [媒发](https://mediaput.cn/?utm_source=1c7):内容分发工具,将内容发布/同步到各个媒体平台,只需 1 分钟

#### pillow(重庆)
* :white_check_mark: [音频转文字工具](https://audio2textai.com):AI 音频转文字,快速、精准、安全的转写服务

#### oroKAKA - [Github](https://github.com/oroKAKA)
* :white_check_mark: [Leawo free-screen-recorder](https://ja.leawo.com/free-screen-recorder/):免费录像软件,支持 4K,无时长限制,无水印

### 2025 年 10 月 28 号添加
#### LinightX(苏州)
* :white_check_mark: [AimtrainerX](https://aimtrainerx.com/):专为 FPS 爱好者打造的瞄准训练网站,免费、上班可玩,丰富的训练模式,支持自定义训练样式

### 2025 年 10 月 27 号添加
#### Ryan(shanghai) 
* :white_check_mark: [melhorar imagem](https://melhorarimagem.me/):针对葡萄牙地区的图片网站

### 2025 年 10 月 26 号添加
#### Horace(深圳) - [Github](github.com/lianhr12/), [博客](https://www.hrope.cn/)
* :white_check_mark: [Full Page Screenshot](https://www.fullpagescreenshot.top/zh):5 秒一键生成精美推广截图插件。完整网页长截图:自动滚动拼接,无需手动操作。精准元素截取:点击即可截取按钮、图片、文字段落。自由区域选择:拖拽框选,只要你想要的部分。可视区域快照:当前所见即所得。重点标注:箭头、方框、文字说明,一目了然。背景设置:多个精美模板,一键设置精致截图。一键复制:截图完成复制立即发给同事朋友

#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indition.com)
* :white_check_mark: [ResizeImage.dev](https://resizeimage.dev/):在浏览器中直接调整图片尺寸。无需上传即可下载 - [更多介绍](https://resizeimage.dev/zh/about)
* :white_check_mark: [ImageConverter.dev](https://imageconverter.dev/):免费在线图像转换工具。在您的浏览器中立即在 PNG、JPG、WebP 之间转换图像格式。无需上传 - [更多介绍](https://imageconverter.dev/zh/about)

#### fzero17
* :white_check_mark: [OpenFolder](https://apps.apple.com/cn/app/openfolder/id6753940577?l=en-GB&mt=12): 在 macOS 菜单栏快速打开常用文件夹

#### suio03 (成都)
* :white_check_mark: [AI 图像编辑器](https://pixfy.io/):图像编辑工具套件,集多种功能于一体。从照片质量、放大低分辨率图像、进行创意设计等等

#### grhuang87-hue
* :white_check_mark: [AI Photo Prompt](https://aiphotoprompt.me):任何图像转换为详细的 AI 提示词,为 Gemini、Midjourney 和 Stable Diffusion 即时生成照片和图像提示词 - [更多介绍](https://aiphotoprompt.me/about)

### 2025 年 10 月 23 号添加
#### viga(福建)
* :white_check_mark: [CSS2TW](https://www.css2tw.online/):将常规 CSS 转成 Tailwind CSS 的网站

### 2025 年 10 月 22 号添加
#### melooooooo(北京) - [GitHub](https://github.com/melooooooo)
* :white_check_mark: [Sora2 Video Studio](https://www.sora2video.blog):免费 Sora2 视频生成服务,联系我可以赠送积分试用,欢迎反馈建议

### 2025 年 10 月 21 号添加
#### 何夕2077 (武汉)- [GitHub](https://github.com/justlovemaki)
* :white_check_mark: [AI 播客生成器](https://podcast.hubtoday.app/):生成播客音频,支持单人和多人对话。支持原文智能配音 - [GitHub 仓库](https://github.com/justlovemaki/Podcast-Generator)
* :white_check_mark: [PromptHub提示词管理优化使用工具](https://prompt.hubtoday.app):AI 提示词管理平台,支持浏览器插件,多平台客户端

#### haocheng - [Github](https://github.com/cabbagehao)
* :white_check_mark: [GenColoring AI](https://gencoloring.ai):AI 生成涂色页平台 - [博客介绍](https://blog.csdn.net/weixin_52314137/article/details/152511285)
* :white_check_mark: [Morse Coder](https://morse-coder.com):摩斯密码在线转换工具

### 2025 年 10 月 20 号添加
#### monsoonw(杭州) 
* :white_check_mark: [Free Sora Watermark Adder](https://sorawatermarkadder.online):为任何视频添加 Sora 水印

#### zhugezifang
* :white_check_mark: [在线记事本 – 免费在线文本编辑器与笔记分享](https://onlinenotepad101.org/):在线记事本,用于无干扰写作、记笔记和文本编辑。免费,无需注册,可与他人分享笔记

#### Aris(美国) - [Github](https://github.com/AriesApp)
* :white_check_mark: [Elisi](https://www.elisiapp.com/):AI + All in one 个人日程效率软件

#### 阿歪(上海) - [Github](https://github.com/iyhub), [Blog](https://iwhy.dev/)
* :white_check_mark: [AI Detector](https://gptdetect.ai/): 检查你的文本是否 AI 生成
* :x: [Image to Image](https://imagetoimage.app/): AI 图片编辑
* :white_check_mark: [Image Describer](https://imagedescriber.cc/): 利用AI为图片生成智能描述
* :x: [Liquid Glass HQ](https://liquidglasshq.com/): 液态玻璃资源收集站

#### nnpyro(武汉) - [Github](https://github.com/nnpyro1/SyncTunnel/), [博客](nnpyro.fwh.is)
* :white_check_mark: [SyncTunnel](nnpyro.fwh.is):跨平台高效文件同步和远程管理软件

#### Ting
* :white_check_mark: [Turbo Learn](https://turbo-learn.com/):从文档、图片、拼音文件生成笔记的 AI 学习工具网站
* :x: [nano banana](https://nano-banana.pro/):AI 驱动的图像编辑器
* :white_check_mark: [List Difference](https://list-difference.com/):数据比较工具,它对两个列表执行SET操作,以查找惟一项、交集和联合,提供高效的数据协调
* :white_check_mark: [ai review generator](https://reviewgenerator.org/):生成商品评论的 AI 工具

#### Ethan Sunray
* :white_check_mark: [Sora Watermark Adder](https://sorawatermarkadder.org):为视频添加专业的 Sora AI 同款水印,浏览器本地完成,无需上传,保护您的隐私,永久免费使用

### 2025 年 10 月 18 号添加
#### 饭特稀 - [Github](https://github.com/shineforever)
* :white_check_mark: [Sora Watermark Remover](https://removemark.io):Sora 视频去水印,5 秒内完成,操作简单

### 2025 年 10 月 17 号添加
#### Damon986
* :white_check_mark: [SongGet](https://songget.com/):多合1的音乐下载软件,可从 Amazon, YouTube, Apple, Spotify, SoundCloud, Line, Tidal, Deezer 等音乐流媒体平台下载高质量音乐,支持批量下载
* :white_check_mark: [Moyea Downloader](https://www.moyeasoft.com/downloader/):多合1的视频下载软件,可从 Amazon Prime, YouTube, Apple TV+, Instagram, TikTok, Facebook, Twitter/X, Disney+, Netflix, Hulu 等视频流媒体平台下载点播视频与直播视频,支持批量下载

#### samtts(杭州) - [Github](https://github.com/samtts-voice)
* :white_check_mark: [SAM TTS](https://samtts.com/):微软 SAM 语音合成工具,重现经典 Windows XP 系统的标志性机器人语音,支持浏览器直接使用无需下载
* :white_check_mark: [AI Hairstlye Changer](https://aihairstylechanger.net/):AI 发型虚拟试换工具,上传照片即可在线试戴 50+ 种发型和 30+ 种发色,帮助用户找到完美造型
* :white_check_mark: [顔文字屋](https://www.kaomojiya.org/):颜文字网站,提供丰富的表情符号分类(哭泣、开心、生气等),一键复制即可在聊天软件中使用

#### indiehack(北京) - [Github](https://github.com/aitoolcentert-del)
* :white_check_mark: [Image Inverter](https://imageinverter.app/) : 图片颜色反转工具,可将黑色转为白色、创建照片负片效果,无需注册即可在浏览器中即时处理
* :x: [Circle Crop Image](https://circle-crop-image.net/):圆形裁剪工具,可快速制作完美的圆形头像和社交媒体图片,支持透明背景导出
* :white_check_mark: [Grayscale Image](https://grayscaleimage.org/):图片灰度转换工具,可将彩色照片转为黑白灰度图像,适合制作复古效果和减小文件大小

### 2025 年 10 月 16 号添加
#### lanmo(武汉) - [Github](https://github.com/oddboy0152-create)
* :white_check_mark: [Veo 3.1 AI](https://veo3-1.co/zh):使用 Veo3.1 创作电影级视频,配备 1080p 原生音频、首尾帧控制及免费试用额度

### 2025 年 10 月 15 号添加
#### oddboy(杭州) - [Github](https://github.com/liuShuZhu), [博客](http://www.oddboy.top)
* :white_check_mark: [Sora2 AI](https://sora2-ai.net/):体验 Sora 2 视频生成 – 创建 1080p 无水印视频,配备同步音频

### 2025 年 10 月 14 号添加
#### xiaobin(北京) - [Github](https://github.com/pangxiaobin)
* :white_check_mark: [灵象工具箱](https://www.lingxiangtools.top/):AI 智能图像处理工具,视频抠图换背景、视频去水印、AI抠图、智能擦除、截图美化、OCR文字识别、在线拼图、视频智能镜头分割、图片压缩、图片格式转换,几乎所有功能都支持批量操作,不限制文件数量和大小(支持 win 和 mac 平台,所有处理都是本地模式保证用户隐私) - [更多介绍](https://www.lingxiangtools.top/#features)

### 2025 年 10 月 12 号添加
#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)
* :white_check_mark: [Bulk Resize Images Online](https://bulkresizeimages.online/):批量调整多张图片的大小。快速、安全,完全在浏览器中运行——无需上传 - [更多介绍](https://bulkresizeimages.online/zh/about)

#### sing1ee(上海) - [Github](https://github.com/sing1ee)
* :x: [Sora Video Downloader](https://soravideodownloader.com/):从共享链接下载 Sora AI 生成的视频。获取原始提示和高质量视频文件

### 2025 年 10 月 10 号添加
#### Leo(成都) 
* :white_check_mark: [Gemini Storybook Gallery](https://geministorybook.gallery/):Gemini Storybook 汇总,分类,保留原生的交互式阅读体验

#### Ethan Sunray
* :white_check_mark: [TO MD](https://tomd.io):将 Word、PDF、表格、演示、网页、图片、音频、压缩包、代码、RSS 和网址转成结构化的 Markdown,秒级转换,无需注册,长期免费,注重隐私与安全。

#### Archer(北京)
* :white_check_mark: [AI照片渲染](https://www.aimage.top/):🔥上传任意照片就能快速生成各种风格的头像,轻松满足所有社交平台的头像需求

### 2025 年 10 月 9 号添加
#### 黑查理(长沙) - [Github](https://github.com/clhey), [博客](https://ruanzhubao.com)
* :white_check_mark: [软著宝](https://ruanzhubao.com):AI 生成全套软著材料(包括 8 张软件截图、详细图文文档鉴别材料、60 页原创源代码等)- [更多介绍](https://ruanzhubao.com/blogs/ruanzhubao-shuomingshu)

### 2025 年 10 月 7 号添加
#### Ryan
* :white_check_mark: [图像去模糊](https://unblurimg.ai/):用人工智能技术消除图像模糊,恢复清晰度和细节。即时提升照片清晰度,修复模糊照片,提高分辨率

#### Jali - [Github](https://github.com/qqxufo)
* :white_check_mark: [NanaVis](https://nanavis.com/zh):Nano Banana 驱动的 AI 图片编辑工具

### 2025 年 10 月 5 号添加
#### Leon(杭州)
* :white_check_mark: [AI-NanoBanana](https://www.ai-nanobanana.net/):AI 图像工作室,让你轻松把创意变成高质量视觉作品

### 2025 年 10 月 4 号添加
#### pillow(重庆)
* :white_check_mark: [Teleprompter](https://teleprompteronline.org):在线提词器,适用于视频创作者、演讲者和教育工作者

#### 詹姆斯 周
* :white_check_mark: [sora2ai.ai](https://sora2ai.ai):最新的 AI 视频生成模型。创建具有同步音频、对话和效果的逼真且物理准确的视频。

#### fanison(北京)
* :white_check_mark: [NanoImg](https://nanoimg.net/):基于 Nano Banana 的 AI 图像引擎,带来简单高效的图片编辑体验。上传图片,输入需求,即刻生成你想要的视觉效果。

### 2025 年 10 月 2 号添加
#### SUNJL(长春):
* :white_check_mark: [AI Lyrics Generator](https://ai-lyrics-generator.net/):AI 歌词生成 & 改进

#### Margox(北京) - [Github](https://github.com/margox)
* :white_check_mark: [萌宠计划(iOS)](https://apps.apple.com/cn/app/%E8%90%8C%E5%AE%A0%E8%AE%A1%E5%88%92-%E5%AE%A0%E7%89%A9%E6%97%A5%E8%AE%B0%E4%B8%8E%E6%B6%88%E8%B4%B9%E8%AE%B0%E8%B4%A6/id6748669989):清新易用的宠物陪伴管家,包含宠物档案、图文日记、消费记账等功能

### 2025 年 10 月 1 号添加
#### Yuzu-Peel(北京) - [Github](https://github.com/Yuzu-Peel)
* :white_check_mark: [Beardstyle AI](https://beardstyle.org/):虚拟试戴胡子

### 2025 年 9 月 29 号添加
#### pandaupup(广州) - [Github](https://github.com/pandaupup)
* :white_check_mark:  [实用小工具:时间格式转换和计算器](https://time-to-decimal.org/):支持时分秒格式和小数表示法双向转换、分钟/秒/天不同单位相互转换、考勤打卡时间四舍五入,工资计算等

#### LongZi(深圳)
* ⏳ [跟我学太极-陈式](https://github.com/dream-approaching/taijiMini):微信小程序,图文+视频呈现八法五步、八段锦、陈式太极拳等内容,旨在推广太极拳文化

#### 0x4c48 - [Github](https://github.com/LoHhhha)
* :x: [PMoS](https://pmos.lohhhha.cn):神经网络模型可视化定义平台 - [更多介绍](https://github.com/LoHhhha/pmos_nn)

#### zxcHolmes
* :white_check_mark: [Git Stars](https://git-stars.org/):发掘最热门,Stars 数最多的 GitHub 开源项目仓库

#### anywhereto(beijing) - [Github](https://github.com/anywhereto)
* :white_check_mark: [scream ai](https://screamai.art//):把你的自拍照转化为电影感十足的千禧年(Y2K)恐怖风照片

#### pandaupup - [Github](https://github.com/pandaupup)
* :white_check_mark: [在线 GPU 性能测试网站 - 毒蘑菇显卡测试](https://volumeshaderbm.org/benchmark):在浏览器里运行3D体积着色器测试GPU渲染能力。实时显示压测性能数据:包括实时的帧率(FPS)、帧时间(Frame Time)和显卡型号。可多渠道分享测试结果,用户点击可使用相同参数进行渲染测试。

### 2025 年 9 月 28 号添加
#### anywhereto(beijing) - [Github](https://github.com/anywhereto)
* :white_check_mark: [banana nana ai](https://bananananoai.net/):AI 图片工具, AI 换脸,AI 清除背景, AI y2k 风格人像

#### elng12(柳州) - [Github](https://github.com/elng12)
* :white_check_mark: [Image to Pixel Art](https://pixelartvillage.org/):图像到像素艺术转换器 – 通过即时预览和调色板控件将 PNG 或 JPG 图像转换为像素艺术,并进行图像到像素的转换帮我生成跟图像那样的

#### ljxyaly(深圳) - [Github](https://github.com/ljxyaly)
* :white_check_mark: [PDFLance](https://www.pdflance.com):PDF 工具集,全部在浏览器里本地运行。你的文件不会被上传到其他地方。免费合并,拆分,编辑,转换 PDF,我们重视您的隐私

### 2025 年 9 月 27 号添加
#### PopcornBoom(深圳) - [Github](https://github.com/POPCORNBOOM), [Bilibili](https://space.bilibili.com/271218438)
* :white_check_mark: [EZHolo](https://github.com/POPCORNBOOM/EZHolodotNet/releases/latest):轻易从照片和其他平面图像创建手工绘制或机器打印的刮擦全息路径 - [更多介绍](https://github.com/POPCORNBOOM/EZHolodotNet)

#### 虾米 - [博客](https://blog.2pp.link)
* :white_check_mark: [opus to mp3](https://opustomp3.online):免费在线音乐格式转换网站。支持全球各地多个语言,免费使用、无需注册、无需下载 APP 即可使用、方便快捷是我们的口号。专为 opus 格式转换 mp3 而生,让每一个人都能听到声音

### 2025 年 9 月 26 号添加
#### 皮皮卡
- :white_check_mark: [Watermarkzero](https://watermarkzero.com/):AI 免费去除图片水印。擦除您照片上多余的水印、文字或标志。它并非仅仅涂抹或模糊水印,而是智能地重建水印后方的背景。 最终呈现的是一张完美干净、自然的照片,仿佛水印从未存在过

#### yvonuk - [推特](https://x.com/mcwangcn)
- :white_check_mark: [Free AI for Everyone](https://free.stockai.trade):无需登录、完全免费的 AI(模型包括 Grok 4 Fast、DeepSeek V3.1 等)。可选择的模型以后可能会有所调整,但这个服务会长期提供,并且完全免费

### 2025 年 9 月 25 号添加
#### 皮皮卡
* :white_check_mark: [AI Image Editor](https://aiimageeditor.photos/):通过文字指令编辑你的照片,AI 图像编辑器是一款由提示词驱动的智能新一代工具,它能让您使用自然语言编辑照片——无需像传统照片编辑器那样进行复杂的手动操作

### 2025 年 9 月 24 号添加
#### Ryan10Yu - [Github](https://github.com/Ryan10Yu)
* :white_check_mark: [Image to Image AI](https://imagetoimage.tech/):基于 AI 的图片修改和重绘工具

#### pillow(重庆) 
* :white_check_mark: [赛博朋克AI](https://cyberpunkai.art):将任意照片转换为令人惊叹的赛博朋克杰作
* :white_check_mark: [反应速度测试](https://reaction-time-test.online):快速测试你的反应速度
* :white_check_mark: [鼠标灵敏度转换](https://sens-converter.online):将你熟练的鼠标灵敏度进行转换
* :white_check_mark: [色盲检测](https://color-blindness-test.com):测试你是否是色盲 

#### BOS1980 - [Github](https://github.com/BOS1980)
* :white_check_mark: [GPU 性能测试工具](https://www.volumeshader.dev/):检测显卡性能。测试和评估你电脑显卡(GPU)的3D渲染性能。目标用户:想要了解自己电脑显卡3D渲染能力、对比不同设备性能,或者开发者需要测试WebGL渲染效果的人群

#### iam-tin - [Github](https://github.com/iam-tin)
* :white_check_mark: [White Pic - 白色背景图片](https://whitepic.online):下载任意分辨率白色背景图片

### 2025 年 9 月 23 号添加
#### Sean(成都) 
* :white_check_mark: [Mushroom Identification](https://mushroomidentification.online):蘑菇 AI 识别工具(快速、准确),结果包含毒性、高危相似种警告

### 2025 年 9 月 22 号添加
#### 萝卜卜(南昌)
* :white_check_mark: [WheelPage - 在线转盘](https://wheelpage.com/zh/):在线转盘,支持抽奖、游戏和快速决策(简洁好用)

#### Horace - [Github](https://github.com/lianhr12)
* :white_check_mark: [SmartCV](https://smartcv.cc):AI 智能简历制作平台,提供简历模板、AI优化建议、多种格式导出等功能

### 2025 年 9 月 19 号添加
#### 嗡嗡鱼 - [Github](https://github.com/kindtree)
* :white_check_mark: [SimpleThumbnail](https://simplethumbnail.com):YouTube 视频缩略图下载工具(免费),支持多分辨率提取,界面简洁无广告
* :white_check_mark: [YouTubeTitles](https://youtubetitles.com):YouTube 标题生成器(AI 驱动),提供快速模式与进阶模式,助力提升视频点击率


#### xmm(东莞) - [Github](https://github.com/XMM17879829028)
* :white_check_mark: [Mental Age Test](https://mentalage.org):心理年龄测试工具,通过科学量表评估用户心理年龄与实际年龄的对比,提供详细且有趣分析报告

#### NINGSHIQI(深圳)
* :white_check_mark: [NanoEditor](https://nanoeditor.app/):对话式 AI 生图平台

### 2025 年 9 月 17 号添加
#### Red - [Github](https://github.com/CrisChr/json-translator), [博客](https://red666.vercel.app/)
* :white_check_mark: [JSON Translator](https://jsontrans.fun):国际化(i18n)翻译工具(为前端开发者打造),上传 json 文件,通过 AI(支持 DeepSeek、Gemini、OpenAI、Anthropic)翻译后直接导出 json,支持 70+ 个国家语言,助力产品出海

#### sing1ee - [Github](https://github.com/sing1ee)
* :white_check_mark: [Foto Miniatur](https://fotominiatur.com/):nano banana 图片生成器,提供常用 prompt

#### 饭特稀
* :white_check_mark: [Thumbnail Downloader](https://thumbnaildownloader.cc):下载视频网站封面的工具,支持 Youtube,Facebook,Ted,支持网站在逐步添加中

### 2025 年 9 月 15 号添加
#### 小金子(杭州) - [Github](https://github.com/xiaojinzi123), [博客](https://blog.csdn.net/u011692041)
* :white_check_mark: [一刻记账](https://yike.icxj.cn/):纯净的记账 App - [更多介绍](https://github.com/xiaojinzi123/yike-app)

#### yangjuzi - [Github](https://github.com/yangjuzi)
* :white_check_mark: [版权符号](https://copyrightsymbol.app/):版权符号的网站,可以复制版权符号及相关的符号©, ®,℗, and ™. ,生成页面footer的版权,版权符号的各种css、alt code、怎么输入在windows、mac、iphone,在word、excel中输入

#### Corey(深圳) - [Github](https://github.com/iamcorey)
* :white_check_mark: [Seedream AI](https://seedreamai.run/):Seedream AI 4.0 AI 图片生成器(最新,免费)
* :white_check_mark: [DR Checker](https://drchecker.org/):检查并展示任何网站的 Domain rating,并且一键生成可展示的DR徽章

#### Ronny(深圳)
* :white_check_mark: [Vidgo AI](https://vidgo.ai):一站式的图片,视频生成平台
* :x: [Video Translator](https://videotranslator.io/):短剧视频翻译工具
* :white_check_mark: [Doculator](https://doculator.org/):集文档,视频,图片翻译于一身的平台


### 2025 年 9 月 14 号添加
#### 饭特稀
* :white_check_mark: [去掉图片里的文字](https://textremoverfromimage.com/)

### 2025 年 9 月 12 号添加
#### OD-Ice(深圳) - [Github](https://github.com/OD-Ice)
* :white_check_mark: [Verbord](https://apps.apple.com/us/app/verbord-private-voice-diary/id6751261198):录音笔记 iOS 应用(纯净、私密),帮你轻松记录生活点滴和创作灵感

#### licon(深圳) - [Github]( https://github.com/licon)
* :white_check_mark: [EZQuiz](https://ezquiz.online):AI 智能实时测验,让你快速创建、分享并与观众通过实时互动测验进行互动
* :white_check_mark: [EZ-translate](https://chromewebstore.google.com/detail/ahlibmildbganmkdhokbkfanpaakpgfd?utm_source=item-share-cb):AI 浏览器翻译插件(免费),支持页面内翻译,截图翻译,自动检测语言 - [开源仓库](https://github.com/licon/llm-translate)

#### 饭特稀 - [Github](https://github.com/shineforever)
* :white_check_mark: [SiteData](https://sitedata.dev):网站流量与 AdSense 反查工具(免费),无需登录即可使用 - [Chrome 浏览器插件](https://chromewebstore.google.com/detail/emeakbgdecgmdjgegnejpppcnkcnoaen)

#### Ryan - [Github](https://github.com/Ryan10Yu)
* :white_check_mark: [AI Song](https://aisong.tech/):AI 生成歌曲、歌词的音乐网站

### 2025 年 9 月 11 号添加
#### ai77 - [网站](https://www.ai77.dev)
* :white_check_mark: [AI 赛事通](https://www.competehub.dev/zh):全球 AI 竞赛聚合平台,收录涵盖数据算法竞赛、AI 大模型竞赛、AI Agent 挑战赛、工程开发竞赛等多个领域,让你不会错过任何一场 AI 赛事,提升技能,赢取奖金

#### Carys - [Github](https://github.com/Caron77ai)
* :white_check_mark: [AIToolsss](https://www.aitoolsss.com/):AI 工具导航,收录全球 AI 产品与应用

### 2025 年 9 月 10 号添加
#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [Proxied Web from URL](https://web.818233.xyz):代理服务器,完全免费,把任何网址放在 https://web.818233.xyz/ 后面,这个新的网址就可以作为代理服务器获取原网站的内容,目前只支持内容获取,不支持网站交互操作。

#### George(北京) 
* :white_check_mark: [AI miniatur](https://aiminiatur.org/):将照片转换为 AI 手办模型

#### godow(杭州) - [Github](http://github.com/godow),
* :white_check_mark: [1desk](https://www.1desk.app/zh-CN):您的私人订制在线桌面:可添加多个页面空间,每个页面空间可添加并自定义卡片位置与尺寸,添加多种卡片如笔记本、Rss、书签、自定义搜索引擎等 - [更多介绍](https://www.1desk.app/zh-CN)

#### Susu(南京) - Github
* :white_check_mark: [Backlink Manager](https://backlinkmanager.net):专注于外链提交管理、SEO 问题检测及权重提升

### 2025 年 9 月 8 号添加
#### asui(泉州市) - [Github](https://github.com/xingxingc/stray_avatar)
* :white_check_mark:  [潦草头像馆](https://avatar-gen.oss-cn-hangzhou.aliyuncs.com/image/%E6%BD%A6%E8%8D%89%E5%A4%B4%E5%83%8F%E9%A6%86.jpeg):随机生成多种搞怪风格头像的微信小程序,让你的头像不再 “撞衫” - [更多介绍](https://developers.weixin.qq.com/community/develop/doc/0006a652bc0ac077bed3e03606180c)   

#### 景彬(武汉) - [Github](https://github.com/youlookwhat)
* :white_check_mark: [所思笔记](https://apps.apple.com/cn/app/id1668533045):日有所思夜有所梦,记录白天的所思和晚上的梦。

#### xbaicai0 - [Github](https://github.com/xbaicai0)
* :x: [Discordtags](https://discordtags.net):使用高级标签查找 Discord 服务器,浏览游戏、学习小组、创意社区。通过智能标签发现符合您兴趣的服务器。

#### wangbing-coder - [Github](https://github.com/wangbing-coder)
* :x: [AI 驱动的智能图片描述生成器](https://image-describer.org/):提交任意图片,生成对这张图片的详细描述文字

#### leah626888 - [Github](https://github.com/leah626888)
* :white_check_mark: [Pixel Art Generator](https://imgtopixel.art/):像素画生成器,将任意图片一键转换为复古风格的像素艺术,支持 JPG、PNG、WebP、GIF、BMP、TIFF 等多种格式,你可以自定义像素尺寸、颜色数量、调色板风格(如 Pico-8、Game Boy、NES 等),还可实时预览转换效果,轻松下载高质量像素画,适合用于社交媒体、游戏、周边设计等场景。

### 2025 年 9 月 7 号添加
#### Prompt2Tool - [Github](https://github.com/prompt-2-tool)
* :white_check_mark: [AI 驱动的免费在线工具平台](https://prompt2tool.com/):提供 300+ 实用工具,无需注册即可使用

### 2025 年 9 月 6 号添加
#### ljxyaly(深圳) - [Github](https://github.com/ljxyaly)
* :white_check_mark: [PDF 编辑器](https://pdf-editor.uyidev.com):简易的 PDF 编辑器
* :white_check_mark: [GIF 助手](https://gif.uyidev.com):GIF 合并与分解

#### Jazz Jay
* :white_check_mark: [AI ASMR视频生成器](https://asmrvideo.ai):AI ASMR视频生成器(采用先进 Veo3 技术)

#### Jammy(上海) - [Github](https://github.com/chenminjie24)
* :white_check_mark: [AI Miniatur](https://aiminiatur.com/):一键制作微缩模型的 AI 图片网站,用户不需要操心提示词,通过预制的提示词模板能快速制作微缩模型图片。

#### tianqi - [Github](https://github.com/allenalston)
* :white_check_mark: [Imagable AI](https://imagable.ai/):人工智能 图片编辑和生成工具,用户可以不需要设计的技术即可通过提示词一键生成和编辑照片或图片。

### 2025 年 9 月 5 号添加
#### Jazz Jay
* :white_check_mark: [Runway Aleph](https://runwayaleph.net/):人工智能 视频编辑平台,用简单的文本提示转换视频内容。用户可以在几分钟内添加/删除对象,生成新的相机角度,应用风格转移,并修改具有专业质量结果的照明

#### Galen Dai - [Github](https://github.com/galendai)
* :white_check_mark: [Copy My Text](https://www.copymytxt.com):将你的 Markdown 文本秒变海报或短链,安全、优雅地分享。

#### leftshine(成都) - [Github](https://github.com/leftshine), [gitee](https://gitee.com/leftshine)
* :white_check_mark: [APKExport](https://github.com/leftshine/APKExport):APK 导出工具,可以非常方便的导出和分享 apk 文件 - [更多介绍](https://leftshine.gitlab.io/apkexport)


### 2025 年 9 月 4 号添加
#### AprDeci - [Github](https://github.com/AprDeci)
* :white_check_mark: [OnePractice](https://moon.onepractice.top):在线英语四六级真题网站

#### Ethan Sunray
* :white_check_mark: [Brave Pink Hero Green](https://bravepinkherogreen.com):用粉色和绿色双色调照片滤镜美化照片。处理快速、私密,并且完全在您的浏览器中完成。

### 2025 年 9 月 3 号添加
#### wbshm(泉州)
* :white_check_mark: [三角形简易计算器](https://wbshm.github.io/show/mini_triangle/mini_triangle.html):输入任意三个参数(边长、角度)既可以绘制出对应的三角形,并计算出其他的参数。欢迎体验和吐槽

### 2025 年 9 月 2 号添加
#### Jay6343 - [Github](https://github.com/Jay6343)
* :white_check_mark: [nanobanana.co](https://nanobanana.co/):Nanobanana.co 是革命性的人工智能图像编辑平台,通过智能文本驱动编辑改变创意工作流程。无论您是数字艺术家,内容创作者还是营销专业人士,每次都可以零学习曲线和完美结果体验 AI 图像编辑的未来。

### 2025 年 9 月 1 号添加
#### JR(深圳) 
* :white_check_mark: [对话翻译器](https://www.talk-translator.com):将你的耳机变成实时翻译器,支持双语实时语音自动翻译、AI对话问答你的翻译记录

#### Carol(广州) - [Github](https://github.com/carolgryman-sudo)
* :white_check_mark: [Nano Banana AI](https://nanobanana-ai.net):基于市面上最强的 AI 图像编辑模型 Nano Banana 开发的图片编辑器,用嘴改图、保持角色一致性、控制细节、图片融合

#### yiquan00 - [yiquan00](https://github.com/yiquan00)
* :white_check_mark: [LaunchitX](https://launchitx.com):新产品(创意)启动平台,适合新产品宣发

#### noGeek(北京)
* :white_check_mark: [DR checker](https://drchecker.net) :免费/域名等级 Domain rating 检测工具

### 2025 年 8 月 31 号添加
#### FlickerMi - [Github](https://github.com/FlickerMi)
* :white_check_mark: [Nano Banana](https://usenanobanana.com):Nano Banana 使用谷歌最新AI技术,提供角色一致性保持、自然语言编辑、多图融合等强大功能。无论是人物换装、场景变换还是精准局部编辑,都能保持原有特征,让您的创意无限可能。

#### laine001(杭州) - [Github](https://github.com/laine001)
* :white_check_mark: [信息系统项目管理师重点总结itpm](https://www.itpmp.cc/):信息系统项目管理师高项的知识总结与记录网站,持续更新,软考的部分朋友可用

### 2025 年 8 月 29 号添加
#### 疯狂的小波(武汉)
* :white_check_mark: [Nano Banana AI 图像编辑器](https://picir.ai/):基于最先进的 AI 图像编辑模型 Nano Banana 开发的图片编辑器,用嘴改图、保持角色一致性、控制细节、图片融合

### 2025 年 8 月 28 号添加
#### david_bai(武汉) - [Github](https://github.com/david-bai00/PrivyDrop), [博客](https://www.privydrop.app/blog)
* :white_check_mark: [PrivyDrop](https://www.privydrop.app):开源简单易用的 P2P 文本文件传输工具网页,支持传输任意大小的文件 - [更多介绍](https://www.privydrop.app/features)

#### iam-tin - [Github](https://github.com/iam-tin)
* :white_check_mark: [Flower Drawing 花卉绘画](https://flowerdrawing.site/):专注于花卉绘画的网站,有不同的花的种类可以选择,只要你用语言描述出样子,你可以画任何的花卉。
* :white_check_mark: [Fish Drawing 鱼类绘画](https://fishdrawing.site/):专注于画各种鱼的网站,你可以随心所欲画出任何你想画的鱼的图片。

### 2025 年 8 月 27 号添加
#### flingyp(上海) - [Github](https://github.com/flingyp)
* :white_check_mark: [简链](https://www.cvlinkhub.online/):打造个性化简历,赢得理想工作

#### 小灰雀(北京)
* :white_check_mark: [EzWebp](https://www.ezwebp.com/):视频转动图(WebP/GIF)在线工具,本地执行,数据安全。

#### Nico(长沙) - [Github](https://github.com/yijianbo)
* :white_check_mark: [TimeGuessr](https://timeguessr.online/):给你一张图片,让你猜测图片发生的时间和地点。我们把 Timeguessr 的玩法原封不动地搬了过来,只是把图库换成了另一批“假照片”——全部由 AI 生成的过去 50 年里可能发生的瞬间

### 2025 年 8 月 26 号添加
#### Lizer(重庆) - [Github](https://github.com/Loverz55)
* :white_check_mark: [数字生命管](https://news.lizer.cc/):抖音热搜时间轴, 一小时自动抓取一次,通过工作流全网搜关于这个事件的时间线,然后  AI 梳理,AI 配图

### 2025 年 8 月 25 号添加
#### 北纬27度
* :white_check_mark: [ARR (Annual Recurring Revenue) (年度经常性收入)排行榜](https://arrfounder.com):爬取了全网公开的 ARR 营收数据做的 founder ARR 榜单,会定期更新,感兴趣的朋友可以看看,说不定你也在这份榜单上面

#### YILS-LIN - [Github](https://github.com/YILS-LIN)
* :white_check_mark: [AI Short Video Factory - 短视频工厂](https://github.com/YILS-LIN/short-video-factory):一键生成产品营销与泛内容短视频,AI批量自动剪辑,高颜值跨平台桌面端工具

#### AskTao - [Github](https://github.com/ask-tao)
* :white_check_mark: [Image Splitter](https://github.com/ask-tao/image-splitter):图集拆分工具。帮助`游戏开发者`或`UI设计师`快速、方便地从一张雪碧图 (`Sprite Sheet`) 中,提取出所有独立的精灵icon资源,或按网格分割图片得到其切片。平台支持:mac/win/linux/web

### 2025 年 8 月 24 号添加
#### hackun666 - [Github](https://github.com/hackun666)
* :white_check_mark: [AI 软著生成器](https://ruanzhu.pro):AI 快速生成软件著作权(软著)申请所需的文档材料

### 2025 年 8 月 23 号添加
#### 辣条(北京)
* :white_check_mark: [picture to drawing](https://picturetodrawing.org/) :图片转手绘风格网站(免费/无需注册)

#### SUOWU(杭州) 
* :white_check_mark: [morse code translator](https://morsecodetranslator.best/):摩斯码翻译器,用来将英文或者日语转为摩斯码,有可视化功能

### 2025 年 8 月 22 号添加
#### monsoonw(杭州)
* :white_check_mark: [Free Qwen Image Edit AI](https://qwen-image.co):Qwen Image Edit 网站。高级 AI 图像编辑与完美文本渲染,完美支持中英文文本渲染。

### 2025 年 8 月 21 号添加
#### kajian(广州)
* :white_check_mark: [codebox-有趣的二维码平台](https://www.codebox.club):超萌的免费二维码生成器,每一个二维码都有故事

#### 林悦己(杭州) 
* :white_check_mark: [Chat Recap AI](https://chatrecap.io):揭示你對話中隱藏的模式、情緒與紅旗,讓你真正理解你的關係

#### BOS1980
* :white_check_mark: [Soulmate Sketch|AI 灵魂伴侣素描(占星画像生成)](https://soulmatedrawing.live):用 AI + 占星,为你生成专属的黑白手绘风格“灵魂伴侣画像”;10–20 秒极速呈现,多语言网站,移动端友好

#### nogeek (杭州)
* :white_check_mark: [初创公司到初创公司](https://startuptostartup.com):免费的发布站 & 目录站

#### Lingglee - [Github](https://github.com/lingglee)
* :white_check_mark: [Avif2Png](https://avif2png.com/):Avif 转 PNG 工具站

#### Honwhy Wang - [Github](https://github.com/honwhy)
* :white_check_mark: [公众号阅读增强器](https://wxreader.honwhy.wang/):让微信公众号阅读体验更舒适,自动生成文章目录,优化图片查看,让阅读长文不再迷失,提升浏览体验 - [更多介绍](https://github.com/honwhy/WeChatReaderEnhancer)

### 2025 年 8 月 19 号添加
#### Panda (深圳)
* :white_check_mark: [薪资跳动](https://money-dance.com/):记录工作和摸鱼的微信小程序,可以实时显示当天收入和进度,可以记录和统计摸鱼多少分钟赚了多少钱,还有各种维度的数据统计和可视化。

#### tanchaowen84(深圳) - [Github](https://github.com/tanchaowen84)
* :white_check_mark:  [Voice Clone - AI 驱动的语音克隆平台](https://voice-clone.org):用户只需录制或上传一段音频,系统便能在几秒内生成一个属于用户自己的声音模型。支持任意文本的语音生成,听起来自然流畅,几乎接近真人语音。整个流程无需复杂设备,也不需要技术背景,真正实现“用几句话训练出自己的声音” - [GitHub 仓库](https://github.com/tanchaowen84/voice-clone)

### 2025 年 8 月 17 号添加
#### xibobo(上海) - [Github](https://github.com/my19940202)
* :white_check_mark: [CelebShout](https://www.celebshout.online/zh):AI 生成明星语音为你街头吆喝带货

#### ftp2010字(北京) - [Github](https://github.com/ftp2010)
* :white_check_mark: [mypassrecovery](https://www.mypassrecovery.com):如果您的 word、pdf、rar 等文档的密码忘记了,这个网站可以帮你找回

### 2025 年 8 月 15 号添加
#### Selenium39(广州) - [Github](http://github.com/Selenium39)
* :white_check_mark: [原牛](https://mihoyonb.com):一站式自媒体工具平台

#### BHznJNs
* :white_check_mark: [狸语字幕助手](https://apps.microsoft.com/store/detail/9PFLDTV29JFV?cid=DevShareMCLPCS):让你不开麦也能在直播时“开口”互动的小工具

#### fzero17
* :white_check_mark: [AA小助手](https://apps.apple.com/app/6749556847):AA 小助手,一键算清谁该付多少,轻松告别手动算错。

### 2025 年 8 月 14 号添加
#### 出逃向量(杭州)
* :white_check_mark: [微信小程序-途搭](https://github.com/user-attachments/assets/2437a6c4-b21b-4f00-a7a3-cc8b245106ae):徒步者的装备搭配系统,可以查看想去路线他人的搭配和热门装备

### 2025 年 8 月 13 号添加
#### Ethan Sunray
* :white_check_mark: [Wplace Tool](https://wplacetool.com):基于浏览器的工具集,帮助 wplace.live 玩家设计像素艺术、匹配官方调色板颜色、监控服务器状态,并协调团队构建

### 2025 年 8 月 12 号添加
#### jammy24 - [Github](https://github.com/chenminjie24)
* :white_check_mark: [PromptArk](https://promptark.net/):帮助用户优化提示词,用户输入简单的提示词,AI 辅助生成更结构化,更详细的提示词

#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [LLM from URL](https://818233.xyz/):通过网址直接使用大模型,完全免费,只需把提问放在 [818233.xyz](https://818233.xyz/) 之后作为新的网址即可获得大模型的回答,支持中文,也支持从 Linux/Mac 终端通过 wget 调用

#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)
* :white_check_mark: [TweetCloner](https://tweetcloner.com/):为使用 X/Twitter 设计的创意工具。克隆任何推文创意,翻译或再创作,将其改造成你自己的全新原创内容,再发布到 X/Twitter

#### heyjude(上海)- [Github](https://github.com/heyjude1817)
* :white_check_mark: [MP3TO](https://www.mp3to.cc): mp3 格式转换工具网站
* :white_check_mark: [MP4TO](https://www.mp4to.cc): mp4 格式转换工具网站

### 2025 年 8 月 8 号添加
#### lio(广东) - [Github](https://github.com/31702160136/ComfyUI-GrsAI)
* :white_check_mark: [GrsAi](https://grsai.com/):GrsAI 国外主流 AI 模型 API 平台。提供价格便宜(全网最低价)稳定的 GPT-4o、Gemini、Flux 和 Veo3 AI API,GPT-4o 图像生成仅需 0.02 一张图

#### Leochens(北京)
* :white_check_mark: [状态栏小本本 (macOS)](https://apps.apple.com/us/app/%E7%8A%B6%E6%80%81%E6%A0%8F%E5%B0%8F%E6%9C%AC%E6%9C%AC/id6749236800):可以在状态栏调起的小本本,查看备忘或者速记灵感,不需要回到主页面,在任何屏幕上方都可以直接调起。支持富文本编辑、快捷键调出。

#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)
* :white_check_mark: [WebsiteScreenshot.online](https://websitescreenshot.online/):免费在线网站截图工具。支持 PNG、JPEG、PDF 格式,支持自定义分辨率,支持移动端和桌面端视图。无需注册,立即使用! - [更多介绍](https://websitescreenshot.online/zh-CN#features)

#### monoonw(杭州)
* :white_check_mark: [Discord Timestamp Generator](https://discordtimestampgenerator.net):简化了在 Disord 中创建特殊格式信息的过程,这些信息会以每个查看者的当地时区显示日期和时间,从而使跨时区的活动协调变得更加容易。

### 2025 年 8 月 4 号添加
#### 何夕2077 (武汉)- [GIthub](https://github.com/justlovemaki), [小宇宙](https://www.xiaoyuzhoufm.com/podcast/683c62b7c1ca9cf575a5030e)
* :white_check_mark: [AI资讯日报](https://ai.hubtoday.app/):每日精选 AI 领域的最新动态,包括行业新闻、热门开源项目、前沿学术论文、科技大V社交媒体言论,并通过 Google Gemini 模型进行智能处理与摘要生成 - [后端项目](https://github.com/justlovemaki/CloudFlare-AI-Insight-Daily) 与 [配套前端项目](https://github.com/justlovemaki/Hextra-AI-Insight-Daily)。

### 2025 年 8 月 3 号添加
#### nogeek(南京)
* :white_check_mark: [The One Startup](https://theonestartup.com):每个小产品都是一个小公司,发现一些小公司,让每个小产品都有被发现的机会

#### feiyu(北京) 
* :white_check_mark: [AI剪影生成器](https://silhouettegenerator.app/):免费 AI 剪影生成器,瞬间将任何照片转换为令人惊艳的剪影

### 2025 年 8 月 2 号添加
#### gemoonly - [Twitter](https://x.com/gell_moon)
* :white_check_mark: [Neetoo](https://apps.apple.com/cn/app/neetoo/id6743790550?mt=12):上班摸鱼小说阅读器,可以在工作之余尽情的阅读小说,不用担心被发现(macOS,可隐藏)

#### Jay6343 - [Github](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-3138860512)
* :white_check_mark: [AI 亲吻视频生成器](https://kissingai.app/):用 AI 基于照片创建逼真的接吻视频,从多种亲吻风格中选择,如法式亲吻或雨中亲吻

### 2025 年 7 月 31 号添加
#### biboom(广州) 
* :white_check_mark: [smartimagix](http://smartimagix.cloud):用 AI 修改图片

#### tushenmei(杭州) 
* :white_check_mark: [Green Screen Remover 免费一键抠图](https://greenscreenremover.online/):手动抠图太慢太烦?我们都懂。免费AI背景抠图网站,释放你的创作力

### 2025 年 7 月 30 号添加
#### Flicker(成都)
* :white_check_mark: [AI LRC Generator](https://ailrcgenerator.com/):AI LRC Generator 使用 AI 技术一键生成音频 LRC 文件!支持自动识别音频内容,精准同步时间轴,适用于配音、字幕、K歌、播客等多种场景。做这个起因是因为手里有一些老歌或者一些市面上消失的歌,没有歌词,所以搞了个音频处理+AI生成歌词的网站。

### 2025 年 7 月 29 号添加
#### dallen(武汉) 
* :x: [BirthChartAI](https://birthchartai.com/):精准星盘分析,AI智能揭示你的性格与命运轨迹
* :x: [HowHotAmI](https://howhotami.org/):AI颜值评分神器,一键测出你的吸引力与面部黄金比例

#### heyjude(github)
* :white_check_mark: [FreeConvert](https://www.freeconvert.cc/):提供图片格式转换功能,支持 heic、heif、png、jpg、pdf 等格式

### 2025 年 7 月 28 号添加
#### sk(广州)
* :white_check_mark: [AIColoringPages](https://ai-coloring-pages.art):提供各种类型的着色图,支持收藏和PDF下载,所有着色图均是用AI生成,每天持续更新着色图,后续考虑支持用户自己AI生成着色图

#### minutes
* :white_check_mark: [Runway Aleph](https://runwayaleph.net/):视频编辑新方式,Runway Aleph 是 AI 视频编辑平台,能通过简单的文本提示来改造视频内容。用户可以增删物体、生成新视角、应用风格迁移、调整光线,轻松达到专业级效果。

#### Brice(南京) 
* :x: [kawaii coloring](https://kawaiicoloring.org/):提供可爱类型的线稿图,持续更新

#### nogeek(南京)
* :white_check_mark: [Days Launch](https://dayslaunch.com/):每天构建,每天发布。做一个发布站+目录站,让开发者都可以免费的发布自己的作品,进行获客和宣传

#### Shanshi(武汉) - [Github](https://github.com/Shanshi66)
* :white_check_mark: [Easy2Text](https://easy2text.app/):将语音转成文本、字幕等多种格式

#### wmin(北京) - [github](https://github.com/worminone)
* :white_check_mark: [How To Sketch](https://howtosketch.net/): 图片转素描网站

#### monsoonw(杭州)
* :white_check_mark: [AI Stem Splitter](https://aistemsplitter.net):AI 音轨分离器

### 2025 年 7 月 26 号添加
#### 码上云行科技(上海) - [官网](https://www.jessenbox.com/)
* :white_check_mark: [极巧立算 (iOS)](https://apps.apple.com/cn/app/id6448924181):汇集各种计算工具的全能计算器 App - [Android - GooglePlay](https://play.google.com/store/apps/details?id=com.jessen.unitsconverter), [Android - 国内应用商店](https://www.jessenbox.com/)

#### **Ch3nyang(南京)** - [Github](https://github.com/wcy-dt), [博客](https://blog.ch3nyang.top/)
* :white_check_mark: [EasyTransfer](https://file.ch3nyang.top/):免费、匿名、加密且易于使用的 E2EE 文件传输工具。只需访问一个简单的网页,即可使用设备代码连接到任何网络中的任何设备。支持免费的内网穿透,也可自行部署 - [仓库](https://github.com/WCY-dt/EasyTransfer)
* :white_check_mark: [my-github-2024](https://2024.ch3nyang.top/):统计用户2024年在GitHub上的活动,并根据提交记录等生成一份数据报告。预计下半年会更新为2025版 - [效果预览](https://github.com/WCY-dt/my-github-2024)

#### 金川(杭州) 
* :white_check_mark: [AI ASMR Generator](https://aiasmrgenerator.com):AI ASMR 视频生成器

### 2025 年 7 月 25 号添加
#### guangzhengli - [Github](https://github.com/guangzhengli) [Twitter](https://x.com/iguangzhengli) [Blog](https://guangzhengli.com)
* :white_check_mark: [NextDevKit](https://nextdevkit.com):Next.js & OpenNext 启动模板,可以比以往快 10 倍地构建你的SaaS应用程序,包括身份验证、支付、落地页、电子邮件、存储、博客、文档和数据库,只需要一天就能启动你的项目,支持部署到所有平台,原生支持 Cloudflare Workers & AWS 等平台。

### 2025 年 7 月 24 号添加
#### DT986(深圳) 
* :white_check_mark: [Photo AI Enhancer - 图片AI增强工具](https://www.leawo.com/image-enhancer/):图片 AI 增强器,可自动或手动调整图片效果,如自动校正曝光、增强光线、去除噪点、调整眼睛大小、自动锐化等,支持批量图片效果增强 。
* :white_check_mark: [DVD刻录](https://www.leawo.com/pro/dvd-creator.html):帮助把图片或者视频刻录成DVD-9/DVD-5碟片、文件夹或者是ISO镜像文件,允许选择字幕与音轨,添加外部字幕,预置多个菜单模板并允许自定义菜单,提供多个视频编辑功能。

### 2025 年 7 月 23 号添加
#### 多喝热水 - [GitHub](https://github.com/acmenlei)
* :white_check_mark: [OfferStar - AI 笔试面试辅助工具](https://www.offerstar.cn):AI 笔试面试辅助工具,隐蔽性高,无视屏幕共享,切屏等检测,AI 问答秒级响应。

### 2025 年 7 月 22 号添加
#### Qiwei - [GitHub](https://github.com/qiweiii)
* :white_check_mark: [Tovo - AI 会议/面试助手](https://tovo.dev):在会议中,Tovo 是一款注重隐私的 AI 助手,完全在您的设备上运行,为会议和对话提供实时转录和智能协助,无需向外部服务器发送任何数据。

#### Enda (香港)
* :white_check_mark: [AI Todo](https://www.aitodo.art) :像很多程序员一样,我日常要兼顾工作任务、生活琐事、项目计划,时常感到事情多但漏掉的也不少。想用智能方式管理这些待办,但市面上的工具要么设计臃肿,要么 AI 能力很弱。于是我花了几周开发了 AI Todo,目标是: 
* 只关注待办本身,不捆绑笔记、文档、时间轴等多余功能
* 使用 AI 把“随手输入”自动转换为结构化任务(包含分类、优先级、预期时间等)
* 实时排序,帮你优先处理最关键的事

#### leo(上海)
* :white_check_mark: [Dog Names World](https://dognamesworld.com/):专为宠物爱好者打造的狗名导航网站,可按性别、风格、含义等多维度筛选,快速找到最适合你爱犬的名字。从可爱风到霸气风,一应俱全

#### 雷光(石家庄)
* :white_check_mark: [中文古籍數字復刻計劃](https://github.com/shanleiguang/vBooks):古籍刻本掃描影像通常存在掃描變形、頁面瑕疵、文件巨大等問題,且圖像無法選中其文字從而不能查詢生字生詞,因而不便閱讀。該計劃目的是參照古籍刻本之原貌,復刻出文字版的電子書,支持圈註、查閱,方便存入電子閱讀器隨時閱讀。通過古籍刻本古樸形式所帶來的沉浸優雅之閱讀體驗,也許將吸引更多讀者愛上古籍閱讀。

#### meetqy(成都)
* :white_check_mark: [HiColors](https://hicolors.org):专注收集动漫/游戏人物,制作成调色板的网站。

#### alex(广州)
* :x: [英语情景说(微信小程序)](https://english.iamdev.cn/):真实场景英语口语练习,通过真实生活场景对话,让英语口语练习更有趣、更实用!

### 2025 年 7 月 21 号添加
#### fanison(北京) 
* :white_check_mark: [photo color changer](https://photocolorchanger.com/):免费在线更改图像颜色,简化图像类型的处理流程。只需使用直观的颜色选择器选择目标区域(前景或背景),然后选择新的颜色即可

### 2025 年 7 月 19 号添加
#### Patrick (顺德)
* :white_check_mark: [怼怼侠](https://www.duiduixia.com/):小网站,用 AI 帮你优雅回怼阴阳怪气,不带脏话

#### Q.Jin - [Github](https://github.com/qijin-3)
* :x: [好有链接 数字名片](https://links.haoyou.tech):数字名片工具,支持多身份名片管理和中文口令分享。它帮助你为每一个社交身份创建独立的名片,分别绑定不同的社交账号、内容卡片和联系方式。在不同场合,分享不同的自己,让对方快速了解你,无需反复自我介绍。除了支持微信分享你的名片。你还可以给每张卡片都绑定中文口令。通过口令搜索和分享卡片,轻巧、便捷,也更有趣 - [小程序二维码](https://links.haoyou.tech/Drawing_bed/Slide_16_9_-_25.png)

#### Hnher(郑州) - [博客](https://www.hnher.com)
* :white_check_mark: [会员次卡通](https://emember.hnher.com):会员计次卡管理系统
* :white_check_mark: [互游侠](https://egame.hnher.com):游戏卡册收集器

### 2025 年 7 月 18 号添加
#### fx(深圳) - [Github](https://github.com/limxfx)
* :white_check_mark: [ContactHelper](https://apps.apple.com/us/app/contacthelper/id6738916060):编辑通讯录联系人属性,让 iPhone 支持T9拨号以及非中文系统下的通讯录排序
* :white_check_mark: [Gone & Left](https://apps.apple.com/us/app/gone-left/id6744050306):时间可视化,感受每一刻时间的流逝,支持 iPhone 小组件

### 2025 年 7 月 17 号添加
#### ziwu(广州) - [Github](https://github.com/ziwu7)
* :white_check_mark: [Omnigen2](https://omnigen2.org/):智源开源的 7B 统一多模态图像生成模型,一句话精准完成风格转换、元素增删、背景替换等高阶 PS 级操作。

#### hnher(郑州)
* :white_check_mark: [水印相机](https://camera.hnher.com/):可以拍带水印照片并分享给微信好友。

### 2025 年 7 月 16 号添加
#### james(武汉)- [Github](https://github.com/JamesHuang22)
* :white_check_mark: [去留助手AI](https://www.huiguo.info/):专为海外留学生和海外发展的华人打造的智能决策辅助工具。通过 AI 大模型分析,根据每个人不同的情况,评估“回国发展”与“留在海外”两种路径的优劣,助力做出更明智的职业与人生选择。并且能通过大数据分析,智能计算与同龄人平均水平的位置。

### 2025 年 7 月 14 号添加
#### heyjude(上海)
* :white_check_mark: [TmpMail](https://www.tmpmail.online): 免费临时邮箱TmpMail
* :x: [Posterfy](https://www.posterfy.art/): 生成音乐海报
* :white_check_mark: [Avatify](https://www.avatify.online/): 生成头像

#### Selenium39(广州) - [Selenium39](http://github.com/Selenium39)
* :white_check_mark: [LLMOCR](https://llmocr.com):基于 AI 的 OCR 服务
* :white_check_mark: [FWFW](https://fwfw.app):Find Websites From World

### 2025 年 7 月 13 号添加
#### nogeek(杭州)
* :white_check_mark: [stater best](https://starterbest.com/):收集一下发布的产品,可以作为导航站、发布站

### 2025 年 7 月 12 号添加
#### fanison(北京)
* :white_check_mark: [melhorar imagem](https://melhorarimagem.org):专注巴西市场的在线图像处理工具,用 AI 帮助用户提升图片分辨率、增强画质、修复模糊和噪点,让您的照片焕然一新。

#### hjiayu799
* :white_check_mark: [魔镜歌词网](https://mojigeci.com/):500 万歌词库,专业歌词搜索平台 - [更多介绍](https://mojigeci.com/about)

#### Amyang(美国) - [Github](https://github.com/AmyangXYZ)
* :white_check_mark: [PoPo](https://popo.love):LLM 在线生成 MMD 纸片人姿势

#### SSShooter - [GitHub](https://github.com/SSShooter)
* :white_check_mark: [SS 工具箱](https://tools.mind-elixir.com/):SS 工具箱是一个集成 40+ 实用在线工具的综合平台,专为提升你的工作效率和创造力而设计。所有工具完全在浏览器中运行,无需上传数据,确保完全的隐私和安全

### 2025 年 7 月 10 号添加
#### liunice (深圳)
* :white_check_mark: [KissPixel](https://kisspixel.ai/):AI 图像生成平台,集成六大核心工具:文本生成图像、图像风格转换、AI 换脸、智能图像替换、图像扩展和图像放大。平台采用积分制运营模式,新用户注册即可获得免费积分。支持多种订阅计划,满足不同用户需求。所有生成的图像均享有商业使用许可,可用于个人和商业项目。无论您是内容创作者、设计师还是营销专业人士,KissPixel 都能为您提供专业的 AI 图像创作解决方案。

#### 李恩泽 - [GitHub](https://github.com/enzeberg)
* :white_check_mark: [铜钟](https://tonzhon.whamon.com/):专注听歌,无广告和社交,下载 歌曲/歌词,创建歌单,资源丰富,UI 清爽 - [更多介绍](https://about-tonzhon.netlify.app/)

#### hcc(北京)
* :white_check_mark: [分身宝](https://clone.youchong.club):Android 应用多开工具,支持微信、QQ、抖音、小红书、淘宝、京东、拼多多、美团、快手、咸鱼等绝大多数主流应用以及各类游戏,轻松管理多个账号。

#### asui(泉州)
* :white_check_mark: [客群采集-微信小程序](https://my-works.oss-cn-beijing.aliyuncs.com/images/download.jpg):拓客小工具,基于地理位置以及一些开放的api去采集商户信息,并围绕这些信息提供了一系列的小功能,例如:数据导入导出、拨打电话、保存通讯录、导航等等

### 2025 年 7 月 8 号添加
#### iam-tin - [Github](https://github.com/iam-tin)
* :white_check_mark: [Humanizar Text](https://humanizartexto.app/):一键优化 AI 生成的文本,让AI无法检测到文本是AI所生成,AI时代下“去AI”的本文神器。
* :white_check_mark: [HIDream AI](https://hidream.online/):HiDream 大模型在线生成图像,让图像更清晰更逼真。
* :white_check_mark: [MORSE CODE](https://morsecode-translator.app/):一键把内容生成对应的摩斯电码的平台,可以通过摩斯电码表达爱意,或者让莫斯电码成为两个人之间的“加密”语言。

### 2025 年 7 月 7 号添加
#### sk(广州)
* :x: [摸鱼地图](https://moyumap.com/):记录和可视化大家"摸鱼"次数的趣味网站。包括摸鱼区域热力图,摸鱼排行榜,看看今天谁在一起摸鱼。

### 2025 年 7 月 6 号添加
#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks)
* :white_check_mark: [Gemlink.app](https://gemlink.app):集内容收集、整理与社交分享于一体的平台。可以作为“稍后阅读”替代使用。旨在解决信息过载、跨平台内容割裂和深度阅读缺失的问题,打造“个性化互联网精华库与思想交流空间” - [配套浏览器插件](https://chromewebstore.google.com/detail/gemlink-your-space-for-sm/pickcibaiaapcbobgbjgmomocmcdpmmn)

#### Margox(北京) - [Github](http://github.com/margox)
* :white_check_mark: [晚星](https://dream.sayhi.cc/): 简约纯粹的白噪音App,包含上百种自然音效和轻音乐,可自由搭配组合,辅助睡眠、放松情绪,缓解压力。

### 2025 年 7 月 5 号添加
#### zgcoder
* :white_check_mark: [图片压缩神器](https://www.zgcoder.com/tic/):对图片进行快速高效的批量压缩和格式转换

### 2025 年 7 月 4 号添加
#### Orion - [Github](https://github.com/OrionTyce)
* :white_check_mark: [Ries.AI](https://ries.ai/zh/learn-english?c=sP0B):颠覆你对学英语的认知!英语学不好的最大原因是接触的太少!我们创新地将高频词汇融入你看的视频和文章,把每天接触的大量中文改造一部分成英语接触,渐进低压拓展语言边界。

#### james(武汉)
* :white_check_mark: [实时工资计时器](https://www.realtimesalary.info/):输入你的年薪或月薪,即可实时看到每一秒赚了多少钱。支持多种货币和实时汇率转换,适合远程工作者、自由职业者等,随时感受赚钱的爽感!比如干远程的小伙伴,赚的是美金,可以实时转换成人民币,干活的时候,非常的有爽感。

### 2025 年 7 月 3 号添加
#### ChillWay
* :white_check_mark: [TwitterDown](https://twitterdown.com/): 下载 Twitter 视频
* :white_check_mark: [KuaishouVideoDownload](https://kuaishou-video-download.com/): 下载快手视频

#### wdh(杭州) 
* :white_check_mark: [Veegen](https://veegen.ai/):图片生成视频工具

### 2025 年 7 月 2 号添加
#### yelo1900 - [Github](https://github.com/yelo1900)
* :white_check_mark: [Crybaby Wallpaper 4K 高清壁纸](https://crybaby-wallpaper.com)

#### tao(杭州) - [Github](https://github.com/nietao2018)
* :white_check_mark: [Converters.pro](https://www.converters.pro):基于 AI 的图片和视频转换网站,可以帮你做背景修复、老照片恢复、虚拟换衣

### 2025 年 7 月 1 号添加
#### rns
* :white_check_mark: [Quitar Fondo](https://quitarfondo.cc/):(西班牙语产品,无中文或英文版)用 AI 删除图片背景

#### iam-tin - [Github](https://github.com/iam-tin)
* :white_check_mark: [MARS AI](https://marsai.site/):MARS AI 提供免费的 AI 视频生成和图像生成,用文本或图片创建专业视频和图片,把点子转为视觉内容

#### RainbowBird | 洛灵 (上海) - [Github](https://github.com/luoling8192), [博客](https://blog.luoling.moe)
* :white_check_mark: [AIRI](https://github.com/moeru-ai/airi):包含 AI 老婆/虚拟角色灵魂的容器,将它们带入我们的世界,希望达到 Neuro-sama 的高度,完全由 LLM 和 AI 驱动,能够进行实时语音聊天、玩 Minecraft、玩Factorio。可在浏览器或桌面运行。

### 2025 年 6 月 30 号添加
#### seeeeal(西安) - [Github](https://github.com/seeeeal) [Blog](https://seeeeal.fun/)
* :white_check_mark: [相机水印生成器](https://exifframe.org): 在线为图片添加相机水印。相机水印包含相机品牌 / 型号 / 拍摄时间 / 拍摄地点 / 光圈 / 快门 / ISO 等信息。优雅的展示你的摄影作品。无需注册登录,免费导出。

### 2025 年 6 月 29 号添加
#### Dylan Tao(合肥)
* :white_check_mark: [SaaSGree](https://saasgree.com):SaaSGree 专为企业间签订各类 SaaS 合同的场景而设计,帮助用户通过专业合同模板快速生成协议,无需高价聘请律师,也避免使用低质量模板带来的法律风险。

### 2025 年 6 月 28 号添加
#### hjiayu799
* :x: [AI Instagram Username Generator](https://instagramusername.org/):生成用户名的网站,输入关键词并选择风格快速生成创意名称。
它还提供匹配的简介建议,特是针对于社交媒体 facebook twitter Instagram...微博之类的,且基于 AI 技术分析流行趋势,生成的内容兼具独特性与吸引力。并且防止重复无法注册 - [更多介绍](https://instagramusername.org/about)

#### leo(上海)
* :white_check_mark: [Asphalt Calculator](https://asphaltcalculatorhub.com/):沥青价格计算器
  
#### Ethan Sunray
* :white_check_mark: [KKV AI](https://kkv.ai):KKV 是一站式 AI 创作平台,提供视频生成、图像创作、照片编辑、趣味滤镜、AI 聊天助手等功能,无障碍访问 Veo 3、Flux、Claude Opus 4 等 100+ 顶级模型

#### erickkkyt - [Github](https://github.com/erickkkyt)
* :white_check_mark: [AI  Dog Olympics Generator](https://www.dogolympics.net/):制作独一无二、爆火的动物奥运会 AI 视频

### 2025 年 6 月 27 号添加
#### toby(南京)
* :white_check_mark: [FantasyGen](https://fantasygen.net/):AI 生成奇幻地图和人物

#### sing1ee(上海)
* :white_check_mark: [Curate Click](https://curateclick.com/):导航站,收录产品和工具。

#### james(杭州)
* :white_check_mark: [fluxcontext](https://fluxcontext.app/) : 用 AI 修改你的图片(使用 FLUX KONTEXT AI),Professional Online Image Enhance with FLUX KONTEXT AI

### 2025 年 6 月 26 号添加
#### Allen(深圳) 
* :white_check_mark: [FLUX Kontext](https://kontextflux.com ):上下文感知智能图像编辑平台,内置 FLUX.1 Kontext ,Gpt4o image 图像编辑器。能够保持人物一致性,对画面精修

#### rns
* :white_check_mark: [Headcanon 生成器 - 创作同人小说创意](https://headcanongenerator.fun/): 为您喜爱的角色创作独特的同人小说创意

### 2025 年 6 月 25 号添加
#### DT986(深圳) 
* :white_check_mark: [Amazon Downloader](https://www.leawo.org/save-video/):Amazon 的点播视频下载工具
* :white_check_mark: [免费的5合1播放器软件](https://www.leawo.com/):可播放 4K 蓝光、蓝光、DVD、视频与音频
#### HongZhong(北京)
* :white_check_mark: [Kmail临时邮箱](https://kmail.pw/):免费安全的临时邮箱,保护您的个人隐私,告别广告垃圾邮件的骚扰

### 2025 年 6 月 24 号添加
#### Poiybro
* :white_check_mark: [My Ringtone](https://myringtone.app/zh-cn/):免费无注册的 100w+ 铃声资源 在线下载工具,只要你想要,没有你搜不到的铃声 - [更多介绍](https://myringtone.app/zh-cn/about)

### 2025 年 6 月 23 号添加
#### wtechtec(深圳) - [Github](https://github.com/WtecHtec), [博客](https://iam.xujingyichang.top/)
* :white_check_mark: [whisperkeyboard](https://whisperkeyboard.app/):灵动岛 + LLM + whisper 语音输入

#### zhucm - [Github](https://github.com/zhucm)
* :white_check_mark: [金句盲盒](http://jinju.yotooapp.com):趣站,页面定时随机推荐一条影视、歌曲或书籍等精彩文字内容,自定义配图或AI生成配图,可复制链接或创建卡片分享。

### 2025 年 6 月 22 号添加
#### Horatio (广州)
* :white_check_mark: [Labubu Live Wallpaper](https://labubulivewallpaper.cc):专为 Labubu 爱好者打造的免费高清动态壁纸宝库,收录超过100款动态壁纸,让可爱的 Labubu 在你的屏幕上动起来,网站提供免费下载获取精美动画 Labubu 动态壁纸设计,并适用于所有设备。

### 2025 年 6 月 21 号添加
#### z3674313
* :white_check_mark: [WhatsMyName](https://whatsmyname.me/):在互联网上搜索用户名足迹的网站。它可覆盖主流社交媒体、论坛、代码托管平台等进行全局搜索,借助高效算法快速出结果 - [更多介绍](https://whatsmyname.me/about)

#### james(杭州)
* :white_check_mark: [asmrvideo.ai](https://asmrvideo.ai/): 用 Veo3 生成高质量的 ASMR 视频

#### DeepBlue-杭州
* :x: [AI Rap Generator](https://rapgenerator.io/):Rap 歌曲生成器

#### kkkk-杭州
* :white_check_mark: [Vogue Veo 3 Generator](https://www.vogueai.net/veo-3-generator):最便宜的 Veo3 文本生成视频

#### leo(上海)
* :white_check_mark: [Coast FIRE Calculator](https://coast-fire-calculator.com/):退休储蓄计算器

#### monsoonw(杭州)
* :white_check_mark: [Free AI Image Generator](https://ai-image-generator.co):一站式聚合所有主流 AI 图片生成模型,无需登录使用 - [更多介绍](https://github.com/free-ai-image-generator/Free-AI-Image-Generator)

#### DamonTsang986(深圳) 
* :white_check_mark: [CleverGet Free Recorder](https://www.leawo.org/cleverget-recorder/):免费录制在线视频并可过滤广告的工具
* :white_check_mark: [免费录屏器](https://www.leawo.com/free-screen-recorder/):免费的4合1屏幕录制软件

### 2025 年 6 月 19 号添加
#### smkwls(深圳) - [Github](https://github.com/smkwls)
* :white_check_mark: [sound effect generator](https://soundeffectgenerator.org/):音效生成网站, 生成自定义音效
* :white_check_mark: [Lip Sync](https://lipsync.studio/):视频和音频嘴形同步,将视频中人的嘴形进行改变以适配音频
* :white_check_mark: [Quit Porn AI](https://quitporn.ai/):帮助人们戒除色情成瘾

#### vladelaina - [Github](https://github.com/vladelaina), [博客](https://vladelaina.com/blog)
* :white_check_mark: [Catime](https://github.com/vladelaina/Catime):极致轻量的 Windows 倒计时工具,具有番茄工作法功能、透明界面和丰富自定义选项,只需几 MB 内存且几乎不占用 CPU 资源,便可在 Windows 上优雅掌控时间 - [更多介绍](https://vladelaina.github.io/Catime/)

### 2025 年 6 月 18 号添加
#### Caron77 - [Github](https://github.com/Caron77ai)
* :white_check_mark: [Veo3 AI Video Generator](https://veo-3.art):支持文本转视频和图像转视频,配备原生音频生成和精准唇形同步,2-5秒完成专业级视频创作。
* :white_check_mark: [Flux Kontext AI Image Editor ](https://flux-kontext.xyz):基于 Black Forest Labs 多模态技术的专业图像转换工具,支持风格迁移、背景替换等功能,2-5秒完成高质量编辑。

#### LuSrackhall(深圳) - [Github](https://github.com/LuSrackhall)
* :white_check_mark: [KeyTone](https://keytone.xuanhall.com/):简单易用、高度可定制的开源按键声音应用,帮助你通过载入自制音频打造独一无二的键音体验,支持多合一 ***高级声音*** 的随机或顺序触发,支持 ***高级声音*** 间的 ***组合与继承***,力求每次敲击都充满创意,释放你的键音艺术。 - [更多介绍](https://github.com/LuSrackhall/KeyTone)

#### md2card (深圳) - [Github](https://github.com/JsonChao)、[博客](https://juejin.cn/user/4318537403878167/posts)
* :white_check_mark: [md2card](https://www.md2card.online/):MD2Card 在线工具,支持多主题,一键将 Markdown 拆分并生成知识卡片,支持 AI 魔幻卡片和长文智能拆分功能,可编辑,可导出 PNG/SVG/PDF,适合笔记分享与社媒传播

#### Alex - [Github](https://github.com/C-Jeril)
* :white_check_mark: [Kuakua夸夸](https://kuakua.app/): 全网最全的心理学资源网站,用简单心理学与AI工具带来幸福激发内在力量 | 成为更好的自己 | 简单心理学,目前还在持续更新中,做更多可体验的心理学内容 - [更多介绍](https://github.com/C-Jeril/kuakua)

### 2025 年 6 月 16 号添加
#### handsometom
* :white_check_mark: [Labubu Wallpaper](https://labubulivewallpaper.com/):下载高级 Labubu 动态壁纸合集,免费获取精美动画 Labubu 动态壁纸设计。适用于所有设备的高品质 Labubu 动态壁纸,动画流畅。

### 2025 年 6 月 13 号添加
#### Anna - [Github](https://github.com/fluxstrive)
* :white_check_mark: [Seedance AI Video Generator](https://seedanceai.net/):用 文字/图片 生成视频,Seedance AI 将您的想法转化为令人惊叹的视频(Seedance 1.0 Pro 模型)

### 2025 年 6 月 12 号添加
#### sing1ee - [Github](https://github.com/sing1ee)
* :white_check_mark: [Random Letter Generator](https://randomlettergenerator.app/):随机生成指定数量的序列,适用密码生成、游戏开发中的随机元素序列等等

#### TuShenmei - [Github](https://github.com/TuShenmei-xiannv)
* :white_check_mark: [职场沟通小诸葛](https://procommai.com/):告别职场说错话焦虑,AI助你掌握高效沟通技巧,提升职场表达力。  
如果你是以下人群,那么职场沟通小诸葛将是你的得力助手:  
职场新人/下属:面对领导和前辈,常常在汇报工作、提出请求时感到压力,担心言辞不妥,显得不专业或冒犯。  
团队管理者/上级:需要向下属布置任务、提供反馈甚至批评,希望能做到既清晰有力,又不打击团队士气。  
跨部门协作者:在与不同背景的同事沟通时,需要频繁切换沟通风格,以确保信息准确传达,并推动项目顺利进行。  
所有追求高效的职场人:厌倦了将宝贵的时间浪费在遣词造句的内耗上,希望将精力聚焦于更有创造性的核心工作。  

#### Anna - [Github](https://github.com/fluxstrive)
* :white_check_mark: [Veo3 AI](https://aiveo3.net/):根据文本提示或图像生成专业视频(使用 Veo3),并提供本地音频和逼真的物理效果

#### chasays
* :x: [veo3 AI video generator](https://zacose.com/veo3_ai_video_generator):通过 AI 生成的音频和视觉完全同步,效果彻底改变视频的创作,使用VEO 3 AI API解锁视频创建的未来 - 与音频同步的无缝视频生成

### 2025 年 6 月 10 号添加
#### dfyfc
* :white_check_mark: [Face To Many](https://facetomany.fun/):用 AI 把您的脸部照片转换成不同的艺术风格,不同种族,不同角色

#### zhugezifang
* :white_check_mark: [临时邮箱](https://tempmailto.online/zh/):安全且匿名的临时电子邮件服务,告别垃圾邮件,保护您的隐私,免费、安全、私密的一次性邮箱服务!

#### Bobo Cao(合肥) - [Github](https://github.com/bo0-bo0), [博客](https://indiepa.ge/bo0bo0)
* :white_check_mark: [Imagetopixel](https://imagetopixel.art):把图片转换成像素画

#### 萝卜(南昌)
* :x: [Ruleta.games](https://ruleta.games):大转盘工具,适合抽奖、决定谁上台发言、选惩罚任务、做课堂游戏

#### wtechtec(深圳) - [Github](https://github.com/WtecHtec)
* :white_check_mark: [在线二维码🧨](https://xujingyichang.top/):专业的二维码生成工具,为用户提供免费、高质量的QR码制作服务。 支持多种内容类型和自定义样式,满足各种使用场景需求

#### Chris
* :white_check_mark: [Brat Generator](https://www.brat-generator.pro/):图像生成工具,灵感来自流行歌手 Charli XCX 的专辑《BRAT》的视觉风格。只需输入一句话,即可一键生成具有“BRAT”美学的专辑风封面图,包括标志性的荧光绿背景、极简无衬线字体和强烈的视觉冲击力。

### 2025 年 6 月 6 号添加
#### xxuan - [Github](https://github.com/xuanxuan96)
* :white_check_mark: [Image Converter](https://image-1.org/): 从图片中提取文字。还可以翻译图片

#### pytpo 
* :white_check_mark: [壁響桌布](https://wallecho.com/ ):可以根据任意文本,免费生成手机或电脑桌布的工具 只需要短短十几秒就可以完成心中想要的手机或电脑壁纸 - [更多介绍](https://wallecho.com/about)

#### sagasu - [Github](https://github.com/s87343472)
* :white_check_mark: [特殊符号复制工具](https://special-characters.aitoolshubs.com/):专业的特殊符号复制工具,包含1000+特殊字符,支持数学符号、货币符号、箭头、希腊字母等多种分类。一键复制,提升Word文档编辑效率。

#### FINE(赣州) - [Github](https://github.com/fine54)
* :white_check_mark: [OC Maker](https://ocmaker.app):基于 GPT4o 的 OC(原创角色)生成器,出图质量好,效果不错

#### Schopenlaam - [博客](https://schopenlaam.com/)
* :white_check_mark: [Mouse Pro](https://mousepro.app):鼠标高亮、放大、聚焦、阅读,适用于视频会议屏幕共享、演示和视频教程录制等

### 2025 年 6 月 4 号添加
#### CodaPrime 
* :white_check_mark: [AI 取名网](https://bbname.cc/):用 AI 帮助宝宝取名服务,依据中国传统命理学为您的宝宝提供最为合适的名字。这款扩展功能融合了八字、生肖、五行以及三才五格等多种传统命理因素,为您的宝宝量身打造吉祥如意的好名字 - [更多介绍](https://bbname.cc/about)

#### rns
* :white_check_mark: [FLUX.1 Kontext Image Generator](https://flux1kontextimagegenerator.online/),FLUX.1 Kontext 图像生成器:一种具有上下文理解、角色一致性和本地编辑功能的 AI 图像生成器

#### Ryan
* :white_check_mark: [AI Baby Generator](https://aibabygenerator.art/):基于 AI 的宝宝长相预测工具

#### dy 
* :white_check_mark: [台灣解夢](https://twjiemeng.com/):融合 AI 技术与传统解梦学说,为用户提供免费梦境解析服务,无需注册即可一直免费使用 - [更多介绍](https://twjiemeng.com/about)

#### mao wei - [Github](https://github.com/mw138)
* :white_check_mark: [AI 随机图片生成器](https://randomimagegenerator.info/index.html):免费的 AI 随机图片生成器,支持数字艺术、抽象背景、概念插图等多种风格

#### Anna - [Github](https://github.com/fluxstrive)
* :x: [Bypass Turnitin](https://bypassturnitin.net/):将 AI 生成的内容转换为自然的文本,绕过 Turnitin 和 AI 检测,同时保留原文的含义和质量

#### aipromptdirectory - [Github](https://github.com/aipromptdirectory)
* :x: [product-rule](https://product-rule.com):探索并发现最具创新性的人工智能产品、工具和解决方案,以改变您的工作流程并提升生产力,汇聚了大量的优秀 AI 产品

#### dy 
* :white_check_mark: [AI Line Art Generator](https://lineart.app/):功能强大的 AI 线稿生成平台,为用户提供多样化的线稿创作与获取服务 - [更多介绍](https://lineart.app/about)

### 2025 年 6 月 3 号添加
#### Amyang - [Github](https://github.com/AmyangXYZ)
* :white_check_mark: [Proof of Awesome](https://proof-of-awesome.app):AI 辅助的学术同行评审的共识机制,将你的真实成就永久记录在区块链上,用有意义的人类成就取代传统挖矿 - [更多介绍](https://proof-of-awesome.app/call-for-achievement)

### 2025 年 6 月 2 号添加
#### Allen(深圳) 
* :white_check_mark: [FLUX Kontext](https://kontextflux.com):FLUX 图片生成工具,简单图文指令实现专业级视觉创作

#### sing1ee- [Github](https://github.com/sing1ee)
* :white_check_mark: [Veo3 video](https://veo3.directory/):收集 Veo3 生成的最新视频,每天更新

#### [Github](https://github.com/bear-clicker)
* :white_check_mark: [LoraAI](https://loraai.io/):flux lora 图片生成工具,用户可以选择不同的 lora 风格实时生成对应的风格图片,价格便宜

#### yvonuk - [推特](https://x.com/mcwangcn)
* :white_check_mark: [Ask Me Anything](https://ama.stockai.trade/):世界上最简单的问答网站,内置实时联网搜索,你可以问它任何问题,还可以查询任何推特/X用户的最新动态,例如输入@elonmusk即可获得马斯克的最新X动态

### 2025 年 5 月 30 号添加
#### NoteGen - [Github](https://github.com/codexu/note-gen)
* :white_check_mark: [NoteGen](https://notegen.top/):跨平台的 Markdown AI 笔记软件,致力于使用 AI 建立记录和写作的桥梁

#### Anna - [Github](https://github.com/fluxstrive)
* :white_check_mark: [Mii Maker](https://miimaker.net/):免费的在线角色创建者,可以让你设计个性化的 Mii 化身。创建具有可定制功能的独特虚拟角色,包括脸型、发型、眼睛、衣服和配饰

#### Corey Chiu - [Github](https://github.com/iamcorey)
* :white_check_mark: [JSON Merge](https://jsonmerge.com/):JSON 合并工具

#### ShownHacks - [Github](https://github.com/ShawnHacks), 北京
* :white_check_mark: [AIHuntList](https://aihuntlist.com/):发现最佳 AI 产品和工具的搜索导航
* :white_check_mark: [NestSaaS](https://nestsaas.com): 构建内容驱动的网站和SaaS应用的现代框架,配备强大的管理工具
* :white_check_mark: [SnapReader](https://chromewebstore.google.com/detail/snapreader/mogfnnfmcbchdciddfejbkfgahklegpp):立即快速保存在线内容,稍后轻松阅读,SnapReader 是一款轻量级的浏览器扩展,旨在帮助你以最小的阻力捕获在线内容

### 2025 年 5 月 29 号添加
#### Charlie(上海) - [Github](https://github.com/weight567)
* :white_check_mark: [Transmonkey](https://www.transmonkey.ai/):所有您所需的翻译工具,一应俱全 - [更多介绍](https://www.transmonkey.ai/faq)
* :white_check_mark: [TeachAny](https://www.teachany.com/):使用 TeachAny AI 工具,简化您的教学 - [更多功能](https://www.teachany.com/tools)
* :white_check_mark: [Imgkits](https://www.imgkits.com/):全能 AI 图像、视频编辑器:使用 Imgkits 创建令人惊艳的照片和视频 - [更多功能](https://www.imgkits.com/create/image)

#### zane - [Github](https://github.com/littleblackone)
* :white_check_mark: [AgentHunter](https://www.agenthunter.io/):每日更新的 AI Agent 目录和新闻


### 2025 年 5 月 28 号添加
#### Lingglee - [Github](https://github.com/lingglee)
* :white_check_mark: [English Daily](https://englishdaily.ai/):AI 每日英语学习平台

### 2025 年 5 月 26 号添加
#### 羊上上(杭州) - [Github](https://github.com/yangbishang/)
* :white_check_mark: [AI 今日热榜](https://aihot.today):汇集全球顶尖来源的最新 AI 新闻、研究和趋势,为您节省宝贵时间

### 2025 年 5 月 25 号添加
#### 3d-animation - [Github](https://github.com/3d-animation)
- :x: [buzz-cut AI](https://buzz-cut.me):上传您的照片,用 AI 变成"寸头"(buzz cut)发型。预览发型效果

##### Sarkory(广州)
- :white_check_mark: [Veo 3 AI](https://veo3ai.org):Veo 3 AI 视频生成

### 2025 年 5 月 22 号添加
#### Sawana Huang
* :white_check_mark: [Board Foot Calculator](https://boardfootcalculator.cc/):简便的在线版英尺计算器,用来计算木材的体积和对应的价格,面向木工爱好者,或者要购买木材的买家

#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)
* :white_check_mark: [mksaas.com](https://mksaas.com):最好的 AI SaaS 模板,只需1个周末就可以上线你的 AI SaaS

### 2025 年 5 月 21 号添加
#### Axis Wang(深圳) - [Github](https://github/wangxs404)
* :white_check_mark: [video2ppt.com](https://video2ppt.com):将任意来源的视频转换为 PPT 演示文档

#### Rns - [Github](https://github.com/rnsss)
* :white_check_mark: [AI Doll](https://ai-doll.online/):用 AI 将人像照片转换成玩具人偶

#### hanlaoshinb - [Github](https://github.com/hanlaoshinb)
* :white_check_mark: [TarotDreamHub](https://www.tarotdreamhub.com/):免费 AI 塔罗牌占卜。想好您想占卜的问题,在线抽牌后就可以一键解牌啦!

### 2025 年 5 月 20 号添加
#### Lee - [Github](https://github.com/lkunxyz)
* :white_check_mark: [bratgenerator](https://bratgenerator.dev/):可以设置字体,背景颜色等

#### HuzefaUsama25 - [Github](https://github.com/HuzefaUsama25)
* :white_check_mark: [WriteHybrid](https://writehybrid.com/):可绕过所有顶级 AI 检测器的 AI 人性化工具

#### Leo(上海)
* :white_check_mark: [Firsto](https://firsto.co/):你的产品,从这里出发
* :white_check_mark: [Raffle Blue](https://raffle.blue/):针对 bluesky post 的抽奖工具
* :x: [AI teach tools](https://aiteach.tools/):教育类 AI 工具的目录站点
* :white_check_mark: [BlueSky SDK](https://bskyinfo.com/sdks/):Bluesky & AT Protocol SDKs Directory
  
### 2025 年 5 月 19 号添加
#### Will(杭州) - [Github](https://github.com/will-deeplearn)
* :white_check_mark: [TarotQA](https://tarotqa.com):AI 塔罗占卜平台,提供多位 AI 塔罗师风格、智能牌阵推荐、每日运势和语音解读等

### 2025 年 5 月 18 号添加
#### Rainlin - [Github](https://github.com/Rainlin007)
* :white_check_mark: [FaceRatingAI](https://faceratingai.com/):AI 颜值打分网站,包括不同维度评分、整体排名等
* :white_check_mark: [AIPoemGenerator](https://aipoemgenerator.cc/):AI 写诗网站

#### lkunemail - [Github](https://github.com/lkunemail)
* :white_check_mark: [AI Tool Kit](https://aitoolkit.io/):AI 工具聚合站,通过不同类别找到你想要的 AI 工具

#### worminone - [Github](https://github.com/worminone)
* :white_check_mark: [AI Image Editor](https://aiimageeditor.me/):AI 图片处理工具,支持图片增强、去水印、抠图、风格转换、线稿提取等十余种功能。无需下载软件,无需注册,上传图片即可一键生成专业效果。适用于电商设计、社交内容创作、摄影后期、教育教学等多种场景,让图片编辑变得更智能、更高效、更简单!

### 2025 年 5 月 17 号添加
#### SAM-TTS-Tool - [Github](https://github.com/SAM-TTS-Tool)
* :white_check_mark: [Microsoft SAM TTS](https://samtts.com/):复刻 Microsoft SAM 的文本转语音工具,支持文字输入并生成极具复古感的电子语音。用户可自定义音高、语速、嘴型、喉咙共鸣等参数,还可下载生成的语音(WAV 格式),无需登录,适合内容创作、游戏配音、搞笑语音等多种场景。

### 2025 年 5 月 16 号添加
#### apple1413 - [Github](https://github.com/apple1413)
* :white_check_mark: [Free Voice Cloning](https://aiclonevoicefree.com/):仅需 5 秒音频样本,即可克隆你的声音 无需登录 免费无限制使用

#### Ayden - [Github](https://github.com/Ayden-123)
* :white_check_mark: [Image to Image AI](https://imgtoimgai.org/):将您的普通照片转换为令人惊叹的艺术作品。是艺术家、设计师和创意专业人士重新构想视觉内容的理想工具

### 2025 年 5 月 15 号添加
#### lwj973 - [Github](https://github.com/lwj973)
* :white_check_mark: [SafeWrite AI](https://safewrite.ai/):结合 AI Humanizer 与 AI 检测功能的写作工具,帮助用户生成更自然、难以被检测为 AI 的内容。支持训练私有化的 Humanizer,模拟个人文风并确保隐私不泄露。同时整合 GPTZero、Turnitin 等检测器,一键获取多平台检测结果。通过“改写-检测-再改写”的自动流程,有效提升内容通过率,适用于学生、自由写手及内容创作者。

#### Sarkory(广州)
* :white_check_mark: [FramePack AI](https://frame-pack.video):AI 视频生成

### 2025 年 5 月 14 号添加
#### bear-clicker - [Github](https://github.com/bear-clicker) 
* :white_check_mark: [ACE-Step](https://acestep.app/):音乐生成,文本转音乐 歌词生成

#### lkunxyz - [Github](https://github.com/lkunxyz) 
* :white_check_mark: [Graffitiart app](https://graffitiart.app/):涂鸦生成工具,可以生成各种不同风格的涂鸦
* :white_check_mark: [Musci](https://musci.app):AI 音乐生成,文本转音乐 歌词生成

### 2025 年 5 月 13 号添加
#### Brice(南京) 
* :white_check_mark: [Attractiveness Scale](https://attractivenessscale.com/):颜值打分网站(基于 AI)

### 2025 年 5 月 12 号添加
#### cmdragon(广州) - [Github](https://[github.com/Amd794](https://github.com/Amd794))
* :white_check_mark: [在线工具箱](https://tools.cmdragon.cn/zh):满足各种任务需求的在线工具,强大的AI驱动工具,提升您的工作效率

#### Jacky(南京) 
* :white_check_mark: [FacelessVideos.APP](https://facelessvideos.app):将一个 idea 转化成短视频 ,自动加上语音,可以定制化背景音乐和字幕,发布在 youtube 频道中。
* :white_check_mark: [ImagesArt.ai](https://imagesart.ai):生成完美的AI艺术提示词。使用这个工具为Flux、Midjourney和Stable Diffusion模型生成并优化图像提示词。
* :white_check_mark: [Flux2Klein.io](https://flux2klein.io/):在 0.5 秒内生成照片级真实图像。基于 Flux2 Klein 9B 模型,提供统一的图像生成和编辑功能。无需注册即可免费生成 2 次。

#### sing1ee - [Github](https://github.com/sing1ee)
* :white_check_mark: [PapyrusFont.com](https://papyrusfont.com/): 用 Papyrus 字体创建精美的文字设计,可保存为 PNG

#### vampirewy - [Github](https://github.com/vampirewy)
* :white_check_mark: [免费在线 AI 角色脑洞生成工具](https://characterheadcanongen.com/zh):借助先进 AI 技术,一键生成多维度角色设定——性格、成长经历、人际关系、价值观等一应俱全。无需注册,完全免费,适用于小说、漫画、游戏等创作场景,智能解析人物特征,助你轻松突破瓶颈,打造鲜活立体的角色。

### 2025 年 5 月 11 号添加
#### Ayden - [Github](https://github.com/Ayden-123)
* :white_check_mark: [Calligraphy Font Generator](https://calligraphyfontgenerator.org/):免费在线书法字体生成工具,一键将普通文字转换为优雅的艺术字体,提供50多种风格选择,适用于设计、社交媒体等多种场景。

### 2025 年 5 月 10 号添加
#### Qiwei - [GitHub](https://github.com/qiweiii)
* :white_check_mark: [Bilibili “换一换” 历史插件](https://chromewebstore.google.com/detail/bilibili-%E2%80%9D%E6%8D%A2%E4%B8%80%E6%8D%A2%E2%80%9C-%E5%8E%86%E5%8F%B2/npfopljnjbamegincfjelhjhnonnjloo):查看 B 站首页的换一换历史。有时不小心点太快导致错过了想看的视频,这个插件可以让你往回走,查看前几组推荐视频

#### Christine(上海) - [Github](https://github.com/liuyinjiwen06)
* :white_check_mark: [Addsubtitle](https://addsubtitle.ai/):视频一键翻译编辑加字幕,超高效视频处理,精准翻译,还原情感;语音克隆与自然配音;自动字幕生成,高效省时;即时在线编辑

### 2025 年 5 月 9 号添加
#### samzong(上海):
* :white_check_mark: [TabBoost(Chrome 扩展)](https://chromewebstore.google.com/detail/tabboost/pnpabkdhbbjmahfnhnfhpgfmhkkeoloe): 提高浏览器标签效率,灵感来自 Arc 浏览器和开发者的实际体验 - [更多介绍](https://github.com/samzong/chrome-tabboost)

#### jzhone(佛山) 
* :white_check_mark: [Best Bra Size Calculator](https://bestbrasizecalculator.com):根据体态计算用户适合穿戴什么文胸以及相关保养提示

#### Alex Li(苏州) 
* :white_check_mark: [信风 AI 外贸获客智能体](https://www.trade-wind.co):每周 AI 全网实时搜索获取高质量线索,自动化拓展终端客户/经销商/合作伙伴,快速布局海外市场 - [更多介绍](https://www.trade-wind.co/compare)

#### underwoodxie - [Github](https://github.com/underwoodxie)
* :white_check_mark: [Free AI Beauty Test](https://aibeautytest.org/): AI 颜值测试,提供给你个性化的建议

### 2025 年 5 月 7 号添加
#### jerrybi(深圳) - [Github](https://github.com/jerrybi)
* :white_check_mark: [AI Doll Generator](https://ai-doll-generator.net):使用 AI 技术将人像转成玩具盒子风格!

#### Caron77 - [Github](https://github.com/Caron77ai)
* :white_check_mark: [4oimg.org](https://4oimg.org):基于 OpenAI 最新图像技术的创作平台,支持多风格生成和精确文本渲染的 AI 绘图工具

### 2025 年 5 月 6 号添加
#### yiquan00 - [GitHub](https://github.com/yiquan00)
* :white_check_mark: [Notion style illustration](https://illustration.imglab.dev):专注于 Notion 风格插画生成网站,一句话提示词就能生成 Notion 风格插画/Flat style illustration 

#### Bobo Cao(合肥) - [Github](https://github.com/bo0-bo0), [博客](https://indiepa.ge/bo0bo0)
* :white_check_mark: [Labubu Wallpaper](https://labubuwallpaper.com/):下载 4K Labubu 壁纸,针对 iPhone, 笔记本和移动设备优化

### 2025 年 5 月 2 号添加
#### Allen(深圳) 
* :white_check_mark: [Clone UI](https://cloneui.org):Web 网页克隆工具,只需上传网站截图、UI 设计图或网站链接就能还原 80% 前端代码设计
* :white_check_mark: [Style Ai](https://styleai.art):免费 GPT-4o 绘画工具,轻松将图片转成吉卜力、史努比、3D 盲盒等功能

### 2025 年 4 月 29 号添加
#### dodid - [Github](https://github.com/dodid) 
* :white_check_mark: [CFA Essentials](https://apps.apple.com/us/app/cfa-essentials-l1-3-exam-prep/id6745157137):高效复习 CFA 考试的手机 App,可以随时随地学习的笔记内容

#### vzt7 - [Github](https://github.com/vzt7/canvave)
* :white_check_mark: [Canvave](https://canvave.com):简单图形设计和动画制作平台。无须专业技能也能做出任意尺寸的精美设计;最高支持图片 3x 或动画 240 FPS 导出;内置基于 Flux 的 AI 文生图、图生图;适合电商卖家、广告设计、社媒运营、独立开发等有设计需求的群体

### 2025 年 4 月 27 号添加
#### wanghongenpin(北京) - [Github](https://github.com/wanghongenpin)
* :white_check_mark: [ProxyPin](https://github.com/wanghongenpin/proxypin/blob/main/README_CN.md):全平台系统开源免费抓包软件

#### handsometong- [Github](https://github.com/handsometong2020)
* :white_check_mark: [Action Figure AI Generator](https://actionfigureai.co/):将您的照片转成动作人偶玩具图像。只需上传照片,添加配件和产品名称,选择喜欢的风格,即可生成专业级别的动作人偶包装盒效果图,适合收藏、分享或用作创意礼物

#### FluxStrive- [Github](https://github.com/fluxstrive)
* :white_check_mark: [Pet To Human](https://pettohuman.com/):用人工智能把你的宠物照片变成人像,保留宠物独有的表情与个性

### 2025 年 4 月 25 号添加
#### Ayden-123 - [Github](https://github.com/Ayden-123)
* :white_check_mark: [Character Headcanon Generator](https://characterheadcanongenerator.online/):角色文本生成网站

#### Sean - [Github](https://github.com/ShurshanX)
* :white_check_mark: [Action Figure AI](https://actionfigureai.online):用 AI 将照片转成手办图

### 2025 年 4 月 24 号添加
#### heygsc - [GitHub](https://github.com/heygsc)
- :x: [circle net](https://circle-net.vercel.app) :等分圆并连线的动画效果,支持点数编辑,支持点的拖拽

### 2025 年 4 月 23 号添加
#### chuyanghui8 - [GitHub](https://github.com/chuyanghui8)
- :white_check_mark: [二维码解码器](https://qrfrompic.com/zh) :扫描图片或使用摄像头提取二维码中的信息,不限量免费使用

### 2025 年 4 月 21 号添加
#### sing1ee - [GitHub](https://github.com/sing1ee)
- :white_check_mark: [SVG Converter](https://svgviewer.app/svg-converter) :编辑预览 SVG,SVG 转png,webp,ico等,不需要登录
- :white_check_mark: [QWQ AI Assistant](https://qwq32.com/) :免费提供经过深思熟虑且富有详细推理的答案的 AI 助手,不需要登录

#### thence(深圳) - [Github](https://github.com/x-thence)
- :x: [临时邮箱](https://temp-email.top/):快速安全的临时邮箱, 保护您的隐私

#### Ayden - [Github](https://github.com/Ayden-123)
- :white_check_mark: [ImageToBlackAndWhite](https://imagetoblackandwhite.org/):把彩色图片转成黑白图片

#### alttextai-net - [GitHub](alttextai-net)
- :white_check_mark: [AI Alt Text Generator](https://svgviewer.app/svg-converter) :免费生成 alt 文本,创建 SEO 友好且易于理解的图片描述,支持多语言,无需登录。

### 2025 年 4 月 19 号添加
#### jianpingliu
* :white_check_mark: [Qwikrank](https://qwikrank.com/):自动调研 SEO 关键词、生成高质量 SEO 长文章、发布到博客、获取自然搜索流量,并且添加图片、内链、外链。适合独立创业者,无需 SEO 知识
* :x: [SupportMatic](https://supportmatic.co/):基于邮件的智能客服,自动索引历史邮件、支持添加知识库、免费 Help Desk 网站,大幅降低邮件客服工作量

### 2025 年 4 月 18 号添加
#### Ayden - [Github](https://github.com/Ayden-123)
* :x: [ImageToAny](https://imagetoany.com/):图片转化类型网站

### 2025 年 4 月 16 号添加
#### lizhichao - [Github](https://github.com/lizhichao)
* :white_check_mark: [报告汇](https://www.vicsdf.com/):各行各业的电子书、论文等数据报告
 
#### Leo(上海)
* :x: [教育类 AI 应用目录](https://aiteach.tools/):教育类 AI 应用目录

#### inno(上海)
* :x: [Gitto](https://www.gitto.ltd/):基于 Git 理念开发的 Todo 类 App

### 2025 年 4 月 14 号添加
#### Leo (上海)
* :white_check_mark: [AI Affiliate 分销目录](https://aiaffiliatelist.com/):收录支持 Affiliate 分销的 AI 应用

### 2025 年 4 月 8 号添加
#### vampirewyi
* :white_check_mark: [免费在线 AI 卡通图片生成工具](https://aicartoongenerator.org/zh):将文本和照片转换为令人惊艳的卡通风格图像。它提供多种艺术风格、丰富的自定义选项和高质量的输出,让用户轻松创建独特的头像、社交媒体内容和品牌插画

#### Link (广州) - [Github](https://github.com/LinkTBF)
* :white_check_mark: [动猫相机](https://apps.apple.com/cn/app/%E5%8A%A8%E7%8C%AB%E7%9B%B8%E6%9C%BA/id6449184105):一键拍猫表情包的相机 APP

#### i365dev - [Github](https://github.com/madawei2699)
* :white_check_mark: [策引](https://www.myinvestpilot.com/):全球市场技术分析工具,可以创建多个市场的模拟组合并做深度回测分析。同时正在开发 AI Agent 功能,可帮助用户使用大模型自动生成基于不同交易策略的模拟组合。

### 2025 年 4 月 7 号添加
#### 疯狂的小波(武汉)
* :white_check_mark: [Logent AI](https://logent.ai/zh):全球首个 AI Agent Logo 生成器;只需要输入产品名称/主要功能,自动生成合适的精美 Logo

#### Jay
* :white_check_mark: [ghibliimage图像转换](https://ghibliimage.art/) :免费将您的照片转换为 ghibli 风格
* :white_check_mark: [Voice Cloning](https://aiclonevoicefree.com/):只需要5秒语音,就可以免费克隆你的声音,无需等待。

### 2025 年 4 月 4 号添加
#### JasmineChzI(深圳) 
* :white_check_mark: [PhotoG V2](https://photog.art/):世界上第一个人工智能营销代理:从一张图片生成广告、视频和 SEO 内容 — 您的电子商务成功永远在线的团队

#### rukShen(深圳) - [Github](https://github.com/WtecHtec), [博客](https://iam.xujingyichang.top/)
* :white_check_mark: [ReplayTact - Form Automation Tester](https://chromewebstore.google.com/detail/replaytact-form-automatio/ohkipcncfnmjoeneihmglaadloddopkg?authuser=0&hl=zh-CN):自动化填写和测试网页表单的 Chrome 插件,支持动态数据生成和用户操作重放,提升测试效率和覆盖率

### 2025 年 4 月 3 号添加
#### nogeek(杭州) - [Github](https://github.com/nogeek-cn), [博客](https://nogeek.cn)
* :white_check_mark: [javaguide](https://javaguide.net/):「Java学习 + 面试指南」涵盖 Java 程序员、架构师需要掌握的核心知识
* :white_check_mark: [chequewriting](https://chequewriting.com/):将金额转成大小写的工具站
* :white_check_mark: [acodenav](https://acodenav.com):只收集编程导航,程序员导航的导航站
* :white_check_mark: [atemplate](https://atemplate.com):只收集完全免费的网页模板的导航站

#### Leochens(北京) - [Github](https://github.com/Leochens) 
* :white_check_mark: [PNG贴纸切割器](https://tools.xiaotie.top/sticker-crop.html):贴纸素材不规整,它来帮你自动切割成单个的,省时又省力!

### 2025 年 4 月 2 号添加
#### Nicole(深圳)
* :white_check_mark: [Ghibli Meme Generator](https://ghibli-meme.com/):免费生成吉卜力(Ghibli)风格的梗图(meme)

#### Leochens(北京) - [Github](https://github.com/Leochens)
* :white_check_mark: [小贴](https://apps.apple.com/cn/app/%E5%B0%8F%E8%B4%B4-%E6%99%BA%E8%83%BD%E8%AE%BE%E8%AE%A1%E6%A8%A1%E6%9D%BF%E5%8D%A1%E7%89%87%E7%94%9F%E6%88%90%E5%B7%A5%E5%85%B7/id6741154916):智能设计模板卡片生成工具 (iOS App)

### 2025 年 4 月 1 号添加
#### Selenium39(广州) - [Github](https://github.com/Selenium39)
* :white_check_mark: [ChatTempMail](https://chat-tempmail.com):AI 驱动的临时邮箱服务

#### zeikia(广州)
* :white_check_mark: [Face Shape AI](https://detectorfaceshape.com/):AI 脸型检测

#### swiftzl(深圳)
* :white_check_mark: [snapmail - 临时邮箱](https://snapmail100.com):临时无限邮箱保护你的隐私安全

#### XuanXu - [官网](https://aiverything.me/)
* :white_check_mark: [Aiverything](https://aiverything.me/):本地文件搜索。结合 GPU 并行计算、智能索引和优化排序算法,提供更快、更精准的本地文件搜索体验,有扩展可实现更多功能 - [更多介绍](https://meta.appinn.net/t/topic/66229)

### 2025 年 3 月 29 号添加
#### jaywongX(广州) 
* :white_check_mark: [UFreeTools - 你的免费工具集](https://ufreetools.com):综合工具平台,提供高质量、易用的在线工具,解决开发和设计的各种需求

#### jess(广州)- [Github](https://github.com/4o-image-gen)
* :white_check_mark: [4oimage](https://4o-image.com/):文生图网站,基于 Gemini 和 GPT4o

### 2025 年 3 月 28 号添加
#### zhushen - [Github](https://github.com/zhushen12580)
* :x: [精准截图](https://puzzledu.com/shot):智能精准截图工具(更懂内容创作者)

### 2025 年 3 月 27 号添加
#### Yasuomang(杭州)
* :white_check_mark: [imghunt](https://imghunt.com/):图片下载浏览器扩展,能自动检测、批量下载并转换网页上的各类图片格式,并且支持自定义导出尺寸

#### Sawyer(上海) - [Github](https://github.com/Sawyer-G)
* :white_check_mark: [idiom.today-中文成语学习工具](https://idiom.today/):帮助英文用户学习中文成语的网站,通过脑图的形式拆分中文成语,提供词义解释,成语故事以及使用案例

### 2025 年 3 月 26 号添加
#### PixelBear - [GitHub](https://github.com/JobYu)
* :white_check_mark: [Image2pixel](https://store.steampowered.com/app/3475120/Image2pixelPixelArtGenerator/):图片转像素画工具,已上架 Steam

#### 超能刚哥 - [Github](https://github.com/margox/)
* :white_check_mark: [音之梦](https://apps.apple.com/cn/app/%E9%9F%B3%E4%B9%8B%E6%A2%A6-%E5%8A%A9%E4%BD%A0%E4%B8%80%E5%A4%9C%E5%A5%BD%E6%A2%A6/id6742869783):轻音乐、白噪声和环境声 App,提供数十首轻音乐、几十种环境声,数十亿种搭配混合结果,用于辅助睡眠或者冥想,已上架 iOS App Store - [作者提供了一些兑换码](https://github.com/1c7/chinese-independent-developer/pull/485#issue-2945709859)

#### Lingglee - [Github](https://github.com/lingglee)
* :x: [Pronunciation Exercises](https://pronunciationexercises.com/):AI 全球发音训练平台

### 2025 年 3 月 24 号添加
#### underwoodxie
* :white_check_mark: [Simpedit](https://simpedit.com/):提供高质量图像特效的免费在线平台,无论您是专业设计师还是普通用户,都能通过简单几步创造出具有艺术感的图像作品 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-2746268292)

#### 参要字帖 - [Github](https://github.com/giroudg)
* :white_check_mark: [参要 AI - 诗词字帖](https://canyaoai.com/copybooks?from=1c7_chinese_independent_developer):用诗词作为练字内容,又练字又温习诗词,双倍收获

### 2025 年 3 月 20 号添加
#### Duan - [Github](https://github.com/duanduanhh)
* :white_check_mark: [VIEW PRE](https://viewpre.com/):中国观景指数预测,当前提供泰山、黄山、武功山云海近三日指数预测,后续扩展更多景点指数预测。期待大家的旅行都不扫兴而归!
* :x: [Tool Hut](https://tool-hut.com/):在线工具箱,内页支持文本 DIFF、JSON 序列化、时间戳转换等小工具,让天下没有难用的工具。

### 2025 年 3 月 19 号添加
#### Ryan - [Github](https://github.com/Ryan10Yu)
* :white_check_mark: [FLUX AI ART](https://fluxaiart.ai/):基于 Flux 的图像生成网站
* :x: [AI Hairstyle](https://aihairstyle.net/):上传照片,用 AI 生成不同发型的图片,帮助您选择合适的发型

### 2025 年 3 月 16 号添加
#### jiangnanboy - [Github](https://github.com/jiangnanboy), [博客](https://jiangnanboy.github.io/)
* :white_check_mark: [海嘉 AI 实验室智能应用](http://117.72.40.129:8001/):表格问答,文字 OCR,表格图片结构识别等

#### Jeremyym - [Github](https://github.com/Jeremyymxiao)
* :white_check_mark: [AI Agents Directory](https://ai-agents-directory.com):AI 智能体导航站
* :white_check_mark: [Harry Potter House Quiz](https://harrypotterhousequiz.pro):哈利波特分院测试
* :white_check_mark: [Chinese Name Generator](https://chinese-name-generator.com):给外国人起中文名,基于 DeepSeek V3
* :white_check_mark: [Learn Kana](https://learnkana.pro):学习日语平假名片假名, 基于 DeepSeek V3
* :x: [AI Death Calculator](https://aideathcalculator.info):用 AI 计算还剩多少寿命

### 2025 年 3 月 15 号添加
#### 橘子哥
* :white_check_mark: [TempMail.Love](https://tempmail.love/):即用即走的临时邮箱,保护你的个人隐私安全 

#### Someuxyz - [Github](github.com/someu/aigotools) 
* :white_check_mark:  [Aigotools](https://github.com/someu/aigotools/blob/main/README.zh-CN.md):开源导航站
* :white_check_mark: [Similarlabs](http://similarlabs.com/):洞察需求和流量,发现和对比你的下一个心仪工具

### 2025 年 3 月 14 号添加
#### jzhone(佛山)
* :white_check_mark: [反斗限免](https://free.apprcn.com):软件、游戏限免资讯网站
* :white_check_mark: [BFP Calculator](https://bfpcalculator.com):免费计算你的体脂率,并提供相应解决方案

### 2025 年 3 月 13 号添加
#### Go7hic - [Github](https://github.com/Go7hic)
* :white_check_mark: [涂色乐园](https://apps.apple.com/us/app/coloringland/id6742505878?platform=ipad):通过 AI 生成涂画的涂色应用 - [更多介绍](https://www.dyy.im/coloring-land)

#### 7SaiWen(成都)
* :white_check_mark: [SSH Monitor: SSH终端与服务器监控](https://apps.apple.com/cn/app/id6479361680):SSH 远程云服务器/容器监控管理终端
* :white_check_mark: [OpenTerm](https://apps.apple.com/cn/app/openterm/id1481149807):终端模拟器, 口袋里的 Linux

### 2025 年 3 月 12 号添加
#### 超杰(河南)
* :x: [SlideBrowser](https://deepthinkapps.com/zh/apps/slide-browser/):轻量的滑动浏览器,给你不一样的浏览器交互体验

#### suwenly(广州) - [Github](https://github.com/TravelTranslator/)
* :white_check_mark: [Travel Translator](https://besttraveltranslator.com):旅游翻译助手,实时语音转文字并翻译成多国语言,朗读翻译的结果,与外国友人无缝沟通

#### CrisChr - [Github](https://github.com/CrisChr), [博客](https://red666.vercel.app/)
* :x: [JSON Translator](https://jsontrans.vercel.app/):用 DeepSeek-V3 帮助网站进行多语言翻译的工具,支持几十种国家的语言,只需提供 DeepSeek API key 并上传 i18n JSON 文件,选择要翻译的语言即可。服务于前端开发者。

### 2025 年 3 月 8 号添加
#### timerring - [Github](https://github.com/timerring)
* :white_check_mark: [bilive](https://bilive.timerring.com/):自动监听并录制 B 站直播和弹幕,7 x 24 小时无人监守录制、渲染弹幕、识别字幕、自动切片、自动上传、启动项目,人人都是录播员 - [开源地址](https://github.com/timerring/bilive)

### 2025 年 3 月 7 号添加
#### Peter - [Github](https://github.com/hx23840),
* :x: [JustSEO](https://justseo.org/):导航站,发现最佳 SEO 工具与资源,用于发现和比较顶级 SEO 工具、插件、软件和资源,以提升您的搜索排名

#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)
* :white_check_mark: [JetBrains Maple Mono](https://github.com/SpaceTimee/Fusion-JetBrainsMapleMono):中英文完美 2:1 宽的 JetBrains Mono + Maple Mono 无衬线合成字体,工整,优雅,超高可读性

#### howoii(上海) - [Github](https://github.com/howoii/SmartBookmark)
* :white_check_mark: [Smart Bookmark](https://chromewebstore.google.com/detail/smart-bookmark/nlboajobccgidfcdoedphgfaklelifoa):AI 智能书签管理插件,自动生成标签,语义化搜索,告别繁琐管理——用AI重构你的书签管理体验

### 2025 年 3 月 6 号添加
#### crischr(成都) - [Github](https://github.com/CrisChr), [博客](https://red666.vercel.app/)
* :white_check_mark: [Formulas AI](https://formulas-ai.vercel.app/):帮助用户生成 Excel 公式,基于 DeepSeek-V3 的 AI 工具产品(需要用户自己填入key)

### 2025 年 2 月 28 号添加
#### zhaoxiaozhao(杭州) - [Github](https://github.com/zhaoxiaozhao07)
* :white_check_mark: [mouse-click](https://github.com/zhaoxiaozhao07/mouse-click):带后台模式的 Windows 自动连点器
* :white_check_mark: [Dynamic-photo-video-display-wall](https://github.com/zhaoxiaozhao07/Dynamic-photo-video-display-wall):多宫格动态播放视频/照片

### 2025 年 2 月 27 号添加
#### Synexa AI - [Github](https://github.com/synexa-ai)
* :white_check_mark: [Synexa AI](https://synexa.ai/):一行代码部署 AI 模型 (Replicate 50% 低价平替),Synexa 是运行无服务器 AI API 最具性价比的解决方案,提供业界最具竞争力的 A100 GPU 价格,相比其他服务商可节省高达 62% 的 AI 算力成本 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/478)

#### SeaEpoch(安徽) - [Github](https://github.com/SeaYJ)
* :white_check_mark: [MouseClick](https://github.com/SeaYJ/MouseClick):鼠标连点器和管理工具,软件界面美观,操作直观,支持鼠标行为模拟,让用户在工作和游戏中实现高效自动化 

### 2025 年 2 月 26 号添加
#### 木易(武汉)
* :x: [DeepSeek Chat](https://ai-chatbot.top/):DeepSeek R1/V3 671B 满血版在线免费使用

#### damaodog - [Github](https://github.com/damaodog)
* :white_check_mark: [Midjourney Sref code 收集](https://mjsrefcode.com/):Midjourney 的sref(风格一致性代码)收集库,现阶段已收集sref代码3000+

#### Sven(昆明) - [Github](https://github.com/shensven)
* :white_check_mark: [Swads](https://swads.app/):群晖 Download Station 客户端,现代、原生、凭直觉再设计,支持 iOS / macOS

### 2025 年 2 月 24 号添加
#### Sawana(上海) - [Github](https://github.com/waitlistSawana)
* :white_check_mark: [高能闪刻 | Highlight Pulse](https://highlightpulse.site/):实时标记B站直播的高光时刻,一键导出记录数据,查看切片工具箱

#### BHznJNs - [GitHub](https://github.com/BHznJNs)
* :white_check_mark: [NFC PLinkD (中文名:电纸链接)](https://github.com/BHznJNs/NFC-PLinkD): 能把 NFC 卡片、贴纸当作实体的链接,将电子资料链接到纸质资料中的 App - [更多介绍](https://bhznjns.github.io/#static/%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91/%E8%BF%9B%E8%A1%8C%E4%B8%AD/NFC-PLinkD/)

#### Moldav(ShangHai) - [Github](https://github.com/[WebClocks](https://github.com/WebClocks))
* :white_check_mark: [Online Web Clock](https://webclock.online/):网页时钟 - 免费在线时钟和时间工具

### 2025 年 2 月 23 号添加
#### sinpo - [Github](https://github.com/JapaneseNameGenerator/JapaneseNameGenerator)
* :white_check_mark: [日语名字生成器](https://japanesename-generator.com):免费 AI 日文名字生成器!生成平假名、片假名、含义和发音

### 2025 年 2 月 22 号添加
#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey), [博客](https://coreychiu.com/)
* :white_check_mark: [Image Translate AI](https://imagetranslate.ai):AI 图片翻译软件,翻译 70 多种语言的图片文本,专为专业人士,电商商家打造。保持图片原始布局,扩大全球影响力,并简化本地化流程

### 2025 年 2 月 20 号添加
#### Ryan(北京) - [Github](https://github.com/Leochens)
* :white_check_mark: [小帖](https://apps.apple.com/us/app/xiaotie-batch-image-generator/id6741154916):iOS 端的模板批量生成图片的工具,支持表格文件和飞书多维表格同步

### 2025 年 2 月 19 号添加
#### 邱比特(大连) - [Github](https://github.com/MQbit)
* :white_check_mark: [aiagents42.com](https://aiagents42.com/):AI Agents 导航站

### 2025 年 2 月 16 号添加
#### Sen Zheng 郑越升 - [Github](https://github.com/dayinji)
* :white_check_mark: [freaky-fonts.com](http://freaky-fonts.com/):怪异字体生成工具,可以把普通的字符变成吸人眼球的字符,发到 Facebook/Instagram/Whatsapp/Twitter 等社交媒体,还有字符变换工具,可以按你喜欢的字体风格随机搭配,自定义字符的映射表/反转文本/打乱文本等

### 2025 年 2 月 12 号添加
#### nanshan(北京) - [Github](https://github.com/nansshan)
* :white_check_mark: [图片切割神器 GridMaker ](https://gridmaker.co):一键切割图片,完美适配社交媒体多图发布!

#### yaolifeng0629 - [Github](https://github.com/yaolifeng0629)
* :white_check_mark: [INDIE TOOLS](https://www.indietools.work/):独立开发出海精选、高质量工具 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/476), [开源地址](https://github.com/yaolifeng0629/Awesome-independent-tools)

#### jianpingliu(上海)
* :x: [WikiTok](https://wikitok.cc):抖音风格的维基百科文章信息流

### 2025 年 2 月 10 号添加
#### nanshan(北京) 
* :white_check_mark: [NavFolders导航站](https://navfolders.com/): 发现、组织和分享跨类别的最佳网站。您获取重要在线资源的一站式目的地

#### ZHIYA(武汉)
* :white_check_mark: [视频分割专业版](https://llcut.zhiyakeji.com/):快速无损精准分割长视频音频, 手机版的 lossless-cut

### 2025 年 2 月 8 号添加
#### Q-Sansan
* :white_check_mark: [Al Visibility](https://www.aivisibility.io/):提供SEO、内容营销、网站分析等领域信息和工具的网站

### 2025 年 2 月 7 号添加
#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)
* :white_check_mark: [BoilerplateHunt](https://boilerplatehunt.com):SaaS模板导航站,找到最合适的模板,加速你的SaaS上线。

### 2025 年 2 月 6 号添加
#### yuesheng zheng(香港)
* :white_check_mark: [SoBricks](https://sobricks.com/):上传照片,即可将其转化为独一无二的 3D 积木。用户可以在线 3D 预览积木设计,和自由调整积木模型。平台提供可交互的积木搭建教程网页,帮助用户轻松完成创作,快来体验吧! - [更多介绍](https://sobricks.com/pages/about-us)

### 2025 年 2 月 4 号添加
#### 罗一蛋(广州)
* :white_check_mark: [慢图浏览](https://relaxpic.com/):安卓相册(快速、简洁),内置相机、隐私空间、文件传输助手等功能,保护用户隐私

#### wmin(北京)
* :x: [Crop Image](https://cropimage.app):图片裁剪工具(免费),支持裁剪框缩放、图片缩放、旋转、翻转、上下左右拖动调整位置,可以裁剪不用的图形、圆形、方形、心形、多边形等裁剪形状

### 2025 年 1 月 29 号添加
#### geektao1024 - [Github](https://github.com/geektao1024)
* :white_check_mark: [学习 Cursor](https://learn-cursor.com/):Cursor AI 编程助手学习平台——专业、全面,完全开源!Learn Cursor 是一个致力于帮助中文开发者更好地使用 Cursor AI 编程助手的专业文档平台。无论您是刚接触 Cursor 的新手,还是想深入了解高级功能的资深用户,这里都能为您提供清晰详实的中文教程和实用指南

#### Xibobo(上海) 
* :x: [在线计数器](https://www.clickcounter.online/):计数器工具,支持手机端和PC端免费使用,可以在线计数并分享,轻量级且用户友好

### 2025 年 1 月 24 号添加
#### Benson Gao(北京) 
* :x: [Supametas.AI](https://supametas.ai):从任何非标准化目标处理为适用 LLM RAG 的结构化数据,更方便的搜集、构建、预处理你的行业领域数据集并集成到 LLM RAG 检索知识库 - [更多介绍](https://supametas.ai/zh/blog/4)

#### JasmineChzI(深圳) 
* :white_check_mark: [PhotoG](https://photog.art/):专为电商卖家打造的 AI 摄影工具。轻松制作专业级产品图片,自定义背景,优化视觉效果,助力销售增长

### 2025 年 1 月 23 号添加
#### 前端小周(郑州) -  [个人主页](https://www.inav.site/)
* :white_check_mark: [酒桌游戏789](https://www.inav.site/static/mp/789.png):适合多人一起玩,掷出7点的倒酒(随意量),掷出8点的喝杯中酒的一半,掷出9点的把杯中酒全部喝完。掷出两个点数相同轮换顺序颠倒,两个1可以指定人喝酒。可切换二人情侣模式

#### wo-zx(广州) 
* :white_check_mark: [优好搜·SEO优化工具](https://www.uhaoseo.com):免费精准诊断网站 SEO 状况,提供专业审查报告,致力保障网站和品牌在搜索引擎内的可见性 - [更多介绍](https://www.uhaoseo.com/seo-analyzer)

### 2025 年 1 月 22 号添加
#### moldav(上海) - [Github](https://github.com/HahaHa0099/MinuteTimer) 
* :white_check_mark: [Minute Timer](https://minutetimers.net/):在线计时器(轻量级且用户友好)

### 2025 年 1 月 14 号添加
#### lezhu(上海)
* :white_check_mark: [Staying](https://staying.fun):交互式可视化 Python & Javascript 代码 - [更多介绍](https://staying.fun/zh/docs/getting-started)

#### Sean(成都) - [Github](https://github.com/ShurshanX)
* :white_check_mark: [Image Describer](https://imagedescriber.app/):提供对艺术作品的深入分析(背景、寓意、构图元素),帮助用户更深层次地理解和欣赏艺术创作和评价编写

#### 天之蓝源(成都) - [Github](https://github.com/Hacker233/resume-design)
* :white_check_mark: [猫步简历](https://maobucv.com/):简历制作神器(开源免费)

### 2025 年 1 月 13 号添加
#### zijiuok - [Github](https://github.com/zijiuok), [Twitter/X](https://x.com/zijiuok)
* :white_check_mark: [小报童排行榜](https://xiaobaoto.com/ranking/):哪些付费专栏最赚钱

### 2025 年 1 月 12 号添加
#### SEEEEAL(西安) - [Github](https://github.com/seeeeal)
* :white_check_mark: [仓鼠工具箱](https://www.hamstertools.org):各类在线工具,用完即走 - [更多介绍](https://www.hamstertools.org/all_tools)

#### Ethan
* :x: [Crop Image](https://cropimage.me/):图片裁剪工具(免费),所有操作都在本地完成,更加隐私和安全。支持裁剪框缩放、图片缩放、旋转、翻转、上下左右拖动调整位置,内置常见的裁剪框比例,缩放时始终保持比例不变,使用更省心

#### RolloTomasi
* :white_check_mark: [whatDoILookLike](https://whatdoilooklike.online/):在电影或剧集中找出与你相似的角色并一键换脸

### 2025 年 1 月 7 号添加
#### 韩老师脑暴
* :x: [aihinto](https://aihinto.com/):为日语市场提供 AI 导航和 AI 资讯

#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :white_check_mark: [Arnis](https://arnis.app/):将现实世界地点转变为 Minecraft 场景地图的工具

### 2025 年 1 月 6 号添加
#### pang-xf - [Github](https://github.com/pang-xf)
- :white_check_mark: [去水印去多多](https://img.pxfe.top/v2/8BjjwDX.jpeg):复制链接存去水印视频的小程序,支持批量解析转存(免费)

### 2025 年 1 月 4 号添加
#### GFE - [Github](https://github.com/duanze)
- :white_check_mark: [InkComic](https://play.google.com/store/apps/details?id=com.feiwen.inkcomic):漫画阅读器(专为平板、墨水屏设计)超低占用,超高性能 - [更多介绍](https://www.xiaohongshu.com/user/profile/5db006100000000001007dc3), [Pro version](https://play.google.com/store/apps/details?id=com.feiwen.inkcomicpro)

### 2024 年 12 月 30 号添加
#### Justin3go(重庆) - [Github](https://github.com/Justin3go), [Twitter](https://x.com/Justin1024go)
* :white_check_mark: [Template0](https://template0.com/):收录了近千份免费的网站模板,包含用途、技术栈、预览截图、描述等信息,方便开发者快速找到适合自己的模板以快速上线

### 2024 年 12 月 28 号添加
#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :x: [Gemini Coder](https://geminicoder.org/):AI 应用代码生成器,基于提示词一键生成网站应用
* :x: [DeepSeek v3](https://deepseekv3.org/):DeepSeek v3 是一个拥有 671B 参数规模、突破性的大规模语言模型,这是介绍它的网站

### 2024 年 12 月 26 号添加
#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :white_check_mark: [TRELLIS 3D AI](https://trellis3d.co/):将图片转换为 3D 资产的免费 AI 工具
* :x: [FLUX Style Shaping](https://fluxstyleshaping.com/):基于 Flux 的图像风格转化工具,将结构元素与艺术风格相结合来转换图像

#### 简具科技(杭州)
* :x: [八爪鱼收纳](https://www.bzysn.top):智能物品管理小程序,帮助您轻松管理家中各类物品,让生活更加井然有序

### 2024 年 12 月 24 号添加
#### KIAN
* :white_check_mark: [XShorts](https://xshorts.pro/):一键将优质 Tweet 转换为数字人短视频。定制化声音、AI背景图片,自动化发布。轻松创作内容优质的短视频

#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)
* :white_check_mark: [Free Open Graph Generator](https://og.indiehub.best/):在线Open Graph图片制作工具,支持多种布局,支持调整文字+背景,支持导出PNG,免费无水印

### 2024 年 12 月 23 号添加
#### 前端小周(郑州) - [github](https://github.com/webjuzi), [博客](https://www.inav.site/)
* :white_check_mark: [短剧大王](https://www.inav.site/v):短剧爱好者的免费观影神器,带你畅享短剧盛宴!本应用完全免费!即可尽情观看海量短剧。如寻觅无果?别担心!只需轻松留言告知您心仪的短剧名称,我们会尽快为您找到资源 - [API 免费开放](https://www.inav.site/mp#/pageC/api/api)

#### Corey Chiu - [GitHub](https://github.com/iamcorey), [博客](https://coreychiu.com)
* :white_check_mark: [GitHub Cards](https://github.cards):将你的 GitHub 数据转换成漂亮易分享的卡片图

### 2024 年 12 月 22 号添加
#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)
* :white_check_mark: [Mkdirs](https://mkdirs.com/):最好的导航站模板,默认集成注册登录、支付、邮件、博客、导航站等所有功能
* :white_check_mark: [IndieHub](https://indiehub.best/):最好的独立开发者导航站,收录400+独立开发工具,支持开发者提交产品

### 2024 年 12 月 17 号添加
#### joyoyao(上海) - [Github](https://github.com/joyoyao)
* :white_check_mark: [帽子云](https://www.maoziyun.com/):GitHub Pages / Cloudflare Pages 的国产替代方案,集成化的静态网站快速创建平台 - [更多介绍](https://www.maoziyun.com/docs/introduction)

### 2024 年 12 月 14 号添加
#### Leo (上海)
* :white_check_mark: [BlueSky 工具目录站点](https://bskyinfo.com):目前最完整的 BlueSky 工具收录站点

### 2024 年 12 月 12 号添加
#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :white_check_mark: [Marvel Rivals Characters](https://marvelrivalscharacters.com/):漫威对决游戏角色指南,角色完整清单,职业、联盟、角色难度等信息,发现最喜欢的角色

### 2024 年 12 月 11 号添加
#### Aining(合肥)
* :white_check_mark: [UnblurImage AI](https://unblurimage.ai/zh):图片无损放大变清晰网站(免费无广)

#### Terry(上海) - [Github](https://github.com/jamieme)
* :white_check_mark: [PodExtra AI](https://www.podextra.ai/):播客内容摘要生成器(有文字稿和思维导图) - [更多介绍](https://www.podextra.ai/)

### 2024 年 12 月 10 号添加
#### cuiheng511 - [Github](https://github.com/cuiheng511)
* :white_check_mark: [Autoppt](https://autoppt.com):AI 演示文稿生成工具,彻底改变了您创建演示文稿的方式。凭借丰富的模板和强大的功能,让您轻松在几分钟内制作出令人惊叹的演示文稿

### 2024 年 12 月 8 号添加
#### chrox - [Github](https://github.com/chrox/readest)
* :white_check_mark: [Readest](https://readest.com?utm_source=indiecn&utm_medium=referral&utm_campaign=post):阅读软件(极简设计、开源、跨平台) - [更多介绍](https://github.com/chrox/readest)

#### underwoodxie - [Github](https://github.com/underwoodxie)
* :x: [一键将 Youtube 视频转成 SEO 友好的文章](https://video-to-article.com/):自己在做网站时发现有些 Youtube 视频的质量很好,想把内容变成文字放在自己的网站上,每次都需要转好几个工具,因此做了一个解决自己问题的工具,如果大家有需要可以使用。

### 2024 年 12 月 7 号添加
#### Ovelv(西安)- [Github](https://github.com/ovelv)
* :white_check_mark: [OnionAI](https://onionai.so):AI 聚合搜索引擎,轻松切换不同的 AI 搜索引擎

### 2024 年 12 月 6 号添加
#### canghaicheng(苏州) 
* :x: [桌面世界](https://www.zhuomianshijie.com/):3D 聊天机器人桌面应用

#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :x: [Genie 2](https://genie2.co/):大规模基础世界模型,能将单张图像转换为完全交互式的 3D 环境

#### Fooying - [Github](https://github.com/fooying), [博客](fooying.com/?ref=chinese-independent-developer)
* :x: [SECSOSO 安全搜搜](https://secsoso.com/):网络安全垂直领域AI搜索,安全搜搜,搜索安全 - [更多介绍](https://www.producthunt.com/products/secsoso)

#### Yue - [Github](https://github.com/yuegao04)
* :white_check_mark: [BlockBlastCheat](https://blockblastcheat.com/):为你的 Block Blast 游戏提供最佳解法

### 2024 年 11 月 24 号添加
#### 玩具工匠 - [Github](https://github.com/HiToysMaker)
* :white_check_mark: [字玩](https://www.font-player.com):字体设计工具 - [源代码](https://github.com/HiToysMaker/fontplayer)

#### zebrapixel - [Twitter](https://x.com/xdkc2000)
* :x: [像素画家](https://apps.apple.com/app/pixel-one/id6504689184):简单易用的像素画编辑器 - [更多介绍](https://www.zebrapixel.com)

### 2024 年 11 月 22 号添加
#### jianpingliu - [Github](https://github.com/jianpingliu)
* :white_check_mark: [ExtensionsFox](https://extensionsfox.store):几个 Instagram 自动化运营小工具 - [更多介绍](https://github.com/asterism-software/extensionsfox.store)
* :white_check_mark: [AMZ Downloader](https://amzdownloader.com):Amazon 产品图片和视频下载小工具 - [更多介绍](https://github.com/asterism-software/amzdownloader.com)
* :white_check_mark: [docgenie](https://docgenie.co.uk):将 Kindle Scribe 笔记本直接分享至各种云存储服务 - [更多介绍](https://github.com/asterism-software/docgenie.co.uk)

### 2024 年 11 月 21 号添加
#### AlkaidWaong - [Github](https://github.com/AlkaidWaong)
* :x: [BestAffiliate](https:www.bestaffiliate.link):精选的软件联盟计划的目录,帮助科技数码创作者获取更好的收益。

#### Q-Sansan - [Github](https://github.com/Q-Sansan)
* :white_check_mark: [OnlyFansKit](https://www.onlyfanskit.com/):专为 OnlyFans 创作者设计的免费工具平台。其目的是帮助创作者轻松创建和管理自己的内容和账户,提升在 OnlyFans 上的成功机会。通过这个平台,用户可以生成独特的名字、用户名以及吸引人的个人简介。此外,OnlyFansKit 还提供自动生成欢迎消息的功能,让粉丝初次访问时便能感受到创作者的独特魅力。同时,该平台配有税收计算器,帮助创作者轻松完成财务规划与管理,为创作者节省时间与精力。

### 2024 年 11 月 19 号添加
#### khaos - [Github](https://github.com/cxykhaos), [博客](https://khaos.net.cn)
* :white_check_mark: [khaos 电吉他社](https://www.khaos.net.cn):电吉他谱分享网站(有电吉他爱好的程序员做的)

### 2024 年 11 月 17 号添加
#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)
* :white_check_mark: [导航站模板](https://mkdirs.com/):轻松创建并部署上线的导航站模板,默认集成注册登录、支付、邮件、博客、导航站等所有功能

### 2024 年 11 月 16 号添加
#### my19940202 - [Github](https://github.com/my19940202)
* :white_check_mark: [网页版屏保小工具](https://www.screensaver.top/zh)

### 2024 年 11 月 12 号添加
#### vlv - [Github](https://github.com/livv)
* :white_check_mark: [vPaste](https://apps.apple.com/cn/app/vpaste/id6444913968):Mac 平台优秀的剪切板工具

### 2024 年 11 月 10 号添加
#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)
* :white_check_mark: [Sheas Cealer](https://github.com/SpaceTimee/Sheas-Cealer):SNI 伪造工具,无需代理即可合法加速 Github, Steam, Pixiv 等网站的直连,让你的网络冲浪畅快无阻

#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey)
- :white_check_mark: [Best Directories](https://bestdirectories.org):导航站的导航站,网站汇集收录各类别各领域的优质导航站,帮助用户发现各领域优质的导航站,从而找到好用的产品。并且收录各类优质打榜平台,不止 ProductHunt,帮助产品更快启动。

### 2024 年 11 月 9 号添加
#### Leo - [Github](https://github.com/andylearnai)
- :white_check_mark: [TalkingAvatar](https://www.talkingavatar.ai/):一键生成 AI 数字人视频的平台,支持多语言对话、表情动作定制,可快速创建个性化数字分身用于营销、教育等场景

### 2024 年 11 月 5 号添加
#### 94R7(桂林) - [Github](https://github.com/WtecHtec), [博客](https://r7.nuxt.dev/)
* :white_check_mark: [SparkleEasy](https://sparkleeasy.pages.dev/):macOS 开发者的效率工具,一键生成 Sparkle 更新配置,快速管理应用权限,让开发更简单 - [更多介绍](https://sparkleeasy.pages.dev)

#### eddilexiok(上海)
* :white_check_mark: [拾音簿 pickupnote](https://apps.apple.com/cn/app/%E6%8B%BE%E9%9F%B3%E7%B0%BF-pickupnote-%E6%88%91%E7%9A%84%E9%9F%B3%E4%B9%90%E6%94%B6%E8%97%8F%E5%BA%93/id6478777973):专为"记录声音场景"而生。将每一条笔记与特定的音乐绑定,3 秒内便可以完成。用标签和检索功能,则可以轻松找到那些与音乐相伴的重要时刻 - [官网](https://pickupnote.com/zh/about)

### 2024 年 11 月 3 号添加
#### Zero24 - [Github](https://github.com/Liu-Lixin)
* :white_check_mark: [Recap](https://recapall.app/):帮助你整理杂乱的内容,节省时间的 Chrome 插件!把网页和 PDF 转化为有趣的视觉摘要,包括思维导图、时间线和表格总结。适合学生、专业人士和内容创作者!

### 2024 年 11 月 2 号添加
#### 食谱甄选(广州) - [Github](https://github.com/xiaocp)
* :white_check_mark: [食谱甄选](https://xiaocp.oss-cn-shenzhen.aliyuncs.com/images/applet/wx_cookbook.png):百万菜谱任君选择,专为下厨房而设计的菜谱 APP,菜谱精心甄选佳而全。每天纠结吃啥菜谱,根据个人口味食材智能推荐 (微信小程序)

### 2024 年 10 月 31 号添加
#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey)
* :white_check_mark: [AI Best Tools导航站](https://aibest.tools/):收录各种优质的 AI 产品工具,帮用户找到最优质且好用的 AI 产品,同时助力 AI 产品开发者展示自己产品。并且网站定时爬取 Product Hunt 等优质产品平台,给 AI 产品开发者提供开发及需求的思路。欢迎大家来提交自己的 AI 产品及发掘更多优质的 AI 工具

### 2024 年 10 月 27 号添加
#### MrHuZhi - [Github](https://github.com/MrHuZhi)
* :white_check_mark: [文件禅](https://fileneatai.com/?lang=zh-cn):AI 文件整理工具,电脑中不断积累文件,每次想整理时,却总是发现这项任务既耗时又费力。为了解决这一痛点,我开发了可以自动化整理和分类杂乱文件的 AI 工具——FileNeatAI,它可以根据文件夹里的文件内容,通过AI自动的将文件进行分类并整理到不同的文件夹中,同时还可以对一些命名不规则的文件进行智能命名,帮助用户轻松、高效地管理文件,提升工作效率 - [图文介绍](https://github.com/1c7/chinese-independent-developer/issues/439?notification_referrer_id=NT_kwDOABuJ07MxMzA2NzY1NzU0MzoxODA0NzU1)

### 2024 年 10 月 26 号添加
#### Ethan Sunray
* :white_check_mark: [Temp Mail](https://tempmail.la/):临时邮箱(免费),保护隐私安全,避免垃圾邮件骚扰,打开就可以使用,无需登录或注册。
* :white_check_mark: [AI Detector](https://aidetector.tech/):验证文本和图片是否由 AI 生成,图片和 PDF 等文档已支持 [C2PA](https://c2pa.org/) 内容凭证校验。([C2PA](https://c2pa.org/) 是一项创新的开放技术,旨在提供在线内容的详细背景信息,增强数字内容的可信度和透明度,目前 OpenAI、Microsoft、Heygen 等知名公司都已经支持)

#### 小学后生(杭州) - [Github](https://github.com/Dnevend), [个人主页](https://dnevend.site/)
* :white_check_mark: [X-Comfort-Browser - 浏览器插件](https://x-comfort-browser.xyz/):用于浏览内容平台(推特、知乎)时,模糊媒体资源,屏蔽广告。专注信息获取,减少视觉干扰,获得互联网噪音下的注意力主动权,同时避免公共场合出现尴尬的场景。- [开源地址](https://github.com/dnevend/x-comfort-browser/)

### 2024 年 10 月 25 号添加
#### JARK006 - [Github](https://github.com/jark006)
* :white_check_mark: [jarkViewer](https://github.com/jark006/jarkViewer):Windows 平台看图软件
* :white_check_mark: [FtpServer](https://github.com/jark006/FtpServer):Windows 平台 FTP 服务器
* :white_check_mark: [小天气](https://github.com/jark006/weather_widget):安卓平台桌面天气小部件

#### Q-Sansan
* :white_check_mark: [Img2Video](https://img2video.ai/):用文本或图像生成短视频(AI)非常适合社交媒体,立即开始创作爆款内容吧!

#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)
* :white_check_mark: [Bluesky Video Downloader](https://blueskyvideodownloader.org/):Bluesky 视频下载器,输入 Bluesky 文章地址,即可将文章中的视频下载到本地

#### Yue - [Github](https://github.com/yuegao04)
* :white_check_mark: [Yes/No 塔罗 AI](https://yesnotarot.org/):融合 AI 技术与塔罗洞见,快速获得"是"与"否"解答
* :white_check_mark: [ProjectHunt](https://projecthunt.me/):发现与分享独立项目

#### kevin 不会写代码 - [Twitter](https://x.com/PennyJoly)
* :x: [CheapGpt - 企业级 I 模型 API](https://ai.linktre.cc):AI 接口调用平台 (稳定、高效、高并发、便宜、企业级)支持 OpenAI、Claude、Gemini 等主流 AI 大模型

### 2024 年 10 月 23 号添加
#### Blushyes(北京) - [Github](https://github.com/blushyes)
* :white_check_mark: [如快](https://sofast.fun):启动器软件(基于 Tauri 开发,支持 Windows 和 Mac),UI 风格类似 Raycast,对键盘操作友好,大幅提高办公学习效率,支持快捷链接、剪贴板管理等功能并支持开发自定义扩展

#### meetqy(成都) - [Github](https://github.com/meetqy)
* :x: [aiseka.com](https://aiseka.com):色彩管理工具,有颜色的介绍,色卡制作,色卡推荐 3 个主要功能

### 2024 年 10 月 22 号添加
#### fengmao(广州)
* :white_check_mark: [liusha tech detector](https://liusha.org/):分析技术栈,提交一个网址,分析该网站用的技术栈,是否 CMS,用什么编程语言,数据分析工具等

 #### QC2168(揭阳) - [Github](https://github.com/QC2168), [博客](https://island-record.vercel.app/)
* :white_check_mark: [MIB](https://github.com/QC2168/mib):安卓数据备份软件,根据配置自动将移动设备上的数据文件迁移备份至电脑上,支持增量备份,节点配置

#### Nico(长沙)- [Github](https://github.com/yijianbo)
* :x: [Subrise](https://subrise.co/zh): Subrise 精心为出海创业者打造 Reddit 运营工具,挑选并分类优质的 Reddit 资讯,运营干货。我们帮助你发现高质、与业务匹配的 Reddi
Download .txt
gitextract_hzlummj9/

├── .github/
│   ├── MAINTAINER.md
│   ├── issue_template.md
│   ├── scripts/
│   │   └── process_item.py
│   └── workflows/
│       └── process_list.yml
├── .gitignore
├── README-Game.md
├── README-Programmer-Edition.md
├── README.md
├── _config.yml
└── pyproject.toml
Download .txt
SYMBOL INDEX (4 symbols across 1 files)

FILE: .github/scripts/process_item.py
  function check_environment (line 19) | def check_environment():
  function remove_quote_blocks (line 31) | def remove_quote_blocks(text: str) -> str:
  function get_ai_project_line (line 42) | def get_ai_project_line(raw_text):
  function main (line 82) | def main():
Condensed preview — 10 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (386K chars).
[
  {
    "path": ".github/MAINTAINER.md",
    "chars": 615,
    "preview": "## 介绍 `.github/` 文件夹的用途\n\n## 概括\n用户在 https://github.com/1c7/chinese-independent-developer/issues/160 提交评论。   \n大部分情况下,格式是不符"
  },
  {
    "path": ".github/issue_template.md",
    "chars": 176,
    "preview": "格式如下:\n```\n#### 名字 - [Github]()\n* :white_check_mark: [网站/App名]():一句话说明(尽量保持在一行内) - [更多介绍]()\n```\n\n如果你的项目还在开发,或者已经关闭了,可以用:\n"
  },
  {
    "path": ".github/scripts/process_item.py",
    "chars": 6501,
    "preview": "import os\nimport re\nimport datetime\nfrom github import Github \nfrom openai import OpenAI\nfrom datetime import datetime, "
  },
  {
    "path": ".github/workflows/process_list.yml",
    "chars": 761,
    "preview": "name: 提交项目(每 24 小时运行一次,晚上 00:00)\non:\n  schedule:\n    - cron: '0 16 * * *'  # 每天 UTC 16:00 运行(北京时间 00:00)\n  workflow_disp"
  },
  {
    "path": ".gitignore",
    "chars": 4,
    "preview": ".env"
  },
  {
    "path": "README-Game.md",
    "chars": 10090,
    "preview": "## 游戏版面 - 中国独立开发者项目列表\n\n本版面放的都是游戏,起始于2025年1月4号\n\n\n### 2026 年 2 月 4 号添加\n#### Shawn (北京) - [Github](https://github.com/Shawn"
  },
  {
    "path": "README-Programmer-Edition.md",
    "chars": 39533,
    "preview": "## 中国独立开发者项目列表(程序员版)\n\n[主板面点这里](https://github.com/1c7/chinese-independent-developer/)\n\n**程序员版和主版面的区别**:\n* 程序员版:用户是程序员,会用"
  },
  {
    "path": "README.md",
    "chars": 319769,
    "preview": "## 中国独立开发者项目列表\n聚合所有中国独立开发者的项目\n\n### 子版面\n- [程序员版面](./README-Programmer-Edition.md):使用需要命令行或写代码\n- [游戏版面](./README-Game.md):"
  },
  {
    "path": "_config.yml",
    "chars": 26,
    "preview": "theme: jekyll-theme-hacker"
  },
  {
    "path": "pyproject.toml",
    "chars": 249,
    "preview": "[project]\nname = \"chinese-independent-developer\"\nversion = \"0.1.0\"\ndescription = \"Add your description here\"\nreadme = \"R"
  }
]

About this extraction

This page contains the full source code of the 1c7/chinese-independent-developer GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 10 files (368.9 KB), approximately 160.4k tokens, and a symbol index with 4 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!