[
  {
    "path": ".github/MAINTAINER.md",
    "content": "## 介绍 `.github/` 文件夹的用途\n\n## 概括\n用户在 https://github.com/1c7/chinese-independent-developer/issues/160 提交评论。   \n大部分情况下，格式是不符合规范的（可以理解）  \n需要用程序自动化处理，减少我的时间投入。\n\n## 流程\n1. 我（1c7）在用户提交的评论点击 🚀 图标（表情）\n1. 触发 Github Action 执行（手动触发 或 定时执行（每 6 小时）\n1. Github Action 会触发 .github/scripts/process_item.py\n2. 查找 \"当前日期-3天\" 开始（这个时间点往后） 所有标记 🚀 图标 的评论\n3. 处理格式，创建 Pull Request。\n4. 给评论新增一个  🎉 图标（意思是\"处理完成\"）\n7. 回复这条评论：感谢提交，已添加。\n\n我只需要修改 PR 然后 merge 就行。  \n\n一句话概括：我点击 🚀 标签，然后 PR 会自动创建，我只需要 merge PR。我大概点击 3 次左右就可以了（如果介绍语有改进空间，我还得改一下文字，然后才 merge）\n\n## 本地运行（为了开发调试）\n```bash\ncp .env.example .env\n\nuv sync\n\nuv run .github/scripts/process_item.py\n```\n"
  },
  {
    "path": ".github/issue_template.md",
    "content": "格式如下：\n```\n#### 名字 - [Github]()\n* :white_check_mark: [网站/App名]()：一句话说明(尽量保持在一行内) - [更多介绍]()\n```\n\n如果你的项目还在开发，或者已经关闭了，可以用：\n```\n:clock8:\n:x:\n```\n\n已关闭的项目最好附上一个更多介绍，里面讲解为什么关闭了，学到了什么\n"
  },
  {
    "path": ".github/scripts/process_item.py",
    "content": "import os\nimport re\nimport datetime\nfrom github import Github \nfrom openai import OpenAI\nfrom datetime import datetime, timedelta, timezone\n\n# ================= 配置区 =================\nPAT_TOKEN = os.getenv(\"PAT_TOKEN\")  # GitHub Personal Access Token\nAPI_KEY = os.getenv(\"LLM_API_KEY\")  # LLM API 密钥（如 DeepSeek、OpenAI）\nBASE_URL = os.getenv(\"LLM_BASE_URL\", \"https://api.openai.com/v1\")  # LLM API 基础 URL\nREPO_NAME = \"1c7/chinese-independent-developer\"  # GitHub 仓库名称\nISSUE_NUMBER = 160  # 用于收集项目提交的 Issue 编号\nADMIN_HANDLE = \"1c7\"  # 管理员 GitHub 用户名\nTRIGGER_EMOJI = \"rocket\"  # 触发处理的表情符号 🚀\nSUCCESS_EMOJI = \"hooray\"  # 处理成功的表情符号 🎉\n# ==========================================\n\ndef check_environment():\n    \"\"\"检查必需的环境变量是否存在\"\"\"\n    if not PAT_TOKEN:\n        raise ValueError(\"❌ 缺少环境变量 PAT_TOKEN！请设置 GitHub Personal Access Token。\")\n    if not API_KEY:\n        raise ValueError(\"❌ 缺少环境变量 LLM_API_KEY！请设置 LLM API Key。\")\n\n    print(f\"✅ 环境变量检查通过\")\n    print(f\"   - PAT_TOKEN: {'*' * 10}{PAT_TOKEN[-4:]}\")\n    print(f\"   - API_KEY: {'*' * 10}{API_KEY[-4:]}\")\n    print(f\"   - BASE_URL: {BASE_URL}\\n\")\n\ndef remove_quote_blocks(text: str) -> str:\n    \"\"\"移除 GitHub 引用回复块\"\"\"\n    lines = text.split('\\n')\n    cleaned_lines = []\n    for line in lines:\n        if not line.lstrip().startswith('>'):\n            cleaned_lines.append(line)\n    result = '\\n'.join(cleaned_lines)\n    result = re.sub(r'\\n{3,}', '\\n\\n', result)\n    return result.strip()\n\ndef get_ai_project_line(raw_text):\n    \"\"\"让 AI 提取项目名称、链接和描述（支持多个产品）\"\"\"\n    client = OpenAI(api_key=API_KEY, base_url=BASE_URL)\n    prompt = f\"\"\"\n任务：将用户的项目介绍转换为 Markdown 格式。\n\n要求：\n1. 识别文本中的所有产品/项目（可能有多个）\n2. 每个项目占一行\n3. 在文字的开头，去掉\"一款、一个、完全免费、高效、简洁、强大、快速、好用、安全\"等营销废话\n4. 严禁使用加粗格式（不要使用 **）\n5. 将产品名称从文字的后面提升到最前面\n6. 每行格式：* :white_check_mark: [项目名](网址)：用途描述\n\n示例 1：\n输入：https://example.com：一款基于 AI 的高效视频生成网站\n输出：* :white_check_mark: [example.com](https://example.com)：AI 视频生成网站\n\n示例 2：\n输入：[MyApp](https://myapp.com) 完全免费的强大工具，帮助用户管理任务\n输出：* :white_check_mark: [MyApp](https://myapp.com)：任务管理工具\n\n示例 3（多个项目）：\n输入：\n[ProductA](https://a.com)：AI 绘画工具\n[ProductB](https://b.com)：AI 写作助手\n输出：\n* :white_check_mark: [ProductA](https://a.com)：AI 绘画工具\n* :white_check_mark: [ProductB](https://b.com)：AI 写作助手\n\n待处理文本：\n{raw_text}\n\"\"\"\n    response = client.chat.completions.create(\n        model=\"deepseek-chat\",\n        messages=[{\"role\": \"user\", \"content\": prompt}],\n        temperature=0.3\n    )\n    return response.choices[0].message.content.strip()\n\ndef main():\n    # 检查环境变量\n    check_environment()\n\n    g = Github(PAT_TOKEN)\n    repo = g.get_repo(REPO_NAME)\n    issue = repo.get_issue(ISSUE_NUMBER)\n\n    time_threshold = datetime.now(timezone.utc) - timedelta(days=3)\n    comments = issue.get_comments(since=time_threshold)\n\n    # ===== 阶段 1：收集待处理评论 =====\n    pending_comments = []\n    formatted_entries = []\n\n    for comment in comments:\n        reactions = comment.get_reactions()\n        has_trigger = any(r.content == TRIGGER_EMOJI and r.user.login == ADMIN_HANDLE for r in reactions)\n        has_success = any(r.content == SUCCESS_EMOJI for r in reactions)\n\n        if has_trigger and not has_success:\n            print(f\"\\n{'='*60}\")\n            print(f\"处理评论：\\n{comment.body}\")\n            print(f\"\\n评论链接：{comment.html_url}\")\n            print(f\"{'='*60}\\n\")\n\n            cleaned_body = remove_quote_blocks(comment.body)\n\n            # 判断用户是否自带了 Header\n            header_match = re.search(r'^####\\s+.*', cleaned_body, re.MULTILINE)\n\n            if header_match:\n                header_line = header_match.group(0).strip()\n                body_for_ai = cleaned_body.replace(header_line, \"\").strip()\n                print(f\"检测到用户自带 Header: {header_line}\")\n            else:\n                author_name = comment.user.login\n                author_url = comment.user.html_url\n                header_line = f\"#### {author_name} - [Github]({author_url})\"\n                body_for_ai = cleaned_body\n                print(f\"自动生成 Header: {header_line}\")\n\n            # AI 处理项目详情行\n            project_line = get_ai_project_line(body_for_ai)\n            formatted_entry = f\"{header_line}\\n{project_line}\"\n\n            pending_comments.append(comment)\n            formatted_entries.append(formatted_entry)\n\n    # ===== 阶段 2：批量提交 =====\n    if not pending_comments:\n        print(\"无待处理评论\")\n        return\n\n    print(f\"\\n共收集 {len(pending_comments)} 个待处理评论\")\n\n    # 更新 README\n    content = repo.get_contents(\"README.md\", ref=\"master\")\n    readme_text = content.decoded_content.decode(\"utf-8\")\n\n    today_str = datetime.now().strftime(\"%Y 年 %-m 月 %-d 号添加\")\n    date_header = f\"### {today_str}\"\n\n    if date_header not in readme_text:\n        new_readme = readme_text.replace(\"3. 项目列表\\n\", f\"3. 项目列表\\n\\n{date_header}\\n\")\n    else:\n        new_readme = readme_text\n\n    # 插入所有条目（用两个换行分隔）\n    insertion_point = new_readme.find(date_header) + len(date_header)\n    all_entries = \"\\n\\n\".join(formatted_entries)\n    final_readme = new_readme[:insertion_point] + \"\\n\\n\" + all_entries + new_readme[insertion_point:]\n\n    # 创建分支\n    branch_name = f\"batch-add-projects-{datetime.now().strftime('%Y%m%d-%H%M%S')}\"\n    base = repo.get_branch(\"master\")\n\n    try:\n        repo.get_git_ref(f\"heads/{branch_name}\").delete()\n    except:\n        pass\n\n    repo.create_git_ref(ref=f\"refs/heads/{branch_name}\", sha=base.commit.sha)\n    repo.update_file(\n        \"README.md\",\n        f\"docs: batch add {len(pending_comments)} projects\",\n        final_readme,\n        content.sha,\n        branch=branch_name\n    )\n\n    # 构建 PR body\n    comment_links = \"\\n\".join([\n        f\"- [{c.user.login}]({c.html_url})\"\n        for c in pending_comments\n    ])\n\n    formatted_list = \"\\n\\n\".join([\n        f\"### {i+1}. {formatted_entries[i]}\"\n        for i in range(len(formatted_entries))\n    ])\n\n    pr_body = f\"\"\"批量添加 {len(pending_comments)} 个项目\n\n## 原始评论链接\n{comment_links}\n\n## 格式化结果\n{formatted_list}\n\n---\n自动生成，触发机制：用户 {ADMIN_HANDLE} 点击 🚀\n\"\"\"\n\n    pr = repo.create_pull(\n        title=f\"新增项目：批量添加 {len(pending_comments)} 个项目\",\n        body=pr_body,\n        head=branch_name,\n        base=\"master\"\n    )\n\n    print(f\"\\n✅ PR 创建成功：{pr.html_url}\")\n\n    # 标记所有评论（添加 🎉 表情）\n    for comment in pending_comments:\n        comment.create_reaction(SUCCESS_EMOJI)\n\n    # 创建一条评论提及所有用户\n    user_mentions = \" \".join([f\"@{c.user.login}\" for c in pending_comments])\n    reply_body = f\"{user_mentions} 感谢提交，已添加！\\n\\n PR 链接：{pr.html_url}\"\n    issue.create_comment(reply_body)\n\n    print(f\"\\n✅ 已标记所有 {len(pending_comments)} 个评论\")\n\nif __name__ == \"__main__\":\n    main()"
  },
  {
    "path": ".github/workflows/process_list.yml",
    "content": "name: 提交项目（每 24 小时运行一次，晚上 00:00）\non:\n  schedule:\n    - cron: '0 16 * * *'  # 每天 UTC 16:00 运行（北京时间 00:00）\n  workflow_dispatch:      # 支持手动触发\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v6.0.1\n\n      - name: Setup Python\n        uses: actions/setup-python@v6.1.0\n        with:\n          python-version: '3.13' \n\n      - name: Install dependencies\n        run: |\n          pip install PyGithub openai\n\n      - name: Run script\n        env:\n          PAT_TOKEN: ${{ secrets.PAT_TOKEN }}\n          LLM_API_KEY: ${{ secrets.LLM_API_KEY }}\n          # 如果你用的不是 OpenAI 原生接口，可以设置这个环境变量，否则默认使用 OpenAI\n          LLM_BASE_URL: \"https://api.deepseek.com\"\n        run: python .github/scripts/process_item.py"
  },
  {
    "path": ".gitignore",
    "content": ".env"
  },
  {
    "path": "README-Game.md",
    "content": "## 游戏版面 - 中国独立开发者项目列表\n\n本版面放的都是游戏，起始于2025年1月4号\n\n\n### 2026 年 2 月 4 号添加\n#### Shawn (北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com)\n* :white_check_mark: [Arcraiders.website](https://arcraiders.website)：ARC raiders 游戏工具网站，功能比较丰富全面 - [更多介绍](https://arcraiders.website/quests)\n\n### 2026 年 1 月 10 号添加\n\n#### 290713469 - [Github](https://github.com/290713469)\n* :white_check_mark: [Star Rupture Calculator](https://starrupture-tools.com/)：Stream 游戏 Star Rupture 工具网站\n\n### 2026 年 1 月 7 号添加\n#### 290713469 - [Github](https://github.com/290713469)\n* :white_check_mark: [Obsessed Trace Calculator](https://obsessedtrace.com/)：Stream 游戏 Obsessed Trace 工具网站\n\n### 2026 年 1 月 4 号添加\n#### Ivanvolt(武汉) - [博客](https://ivanvolt.com)，[Github](https://github.com/ivanvolt-labs)\n* :white_check_mark: [Square Face Generator](https://squarefacegenerator.co)：生成方脸头像\n* :white_check_mark: [UB Games](https://ubgames.co)：免费浏览器游戏\n* :white_check_mark: [Wenda Treatment](https://wendatreatment.com)：暗黑音乐之旅\n\n### 2026 年 1 月 3 号添加\n#### 290713469 - [Github](https://github.com/290713469)\n* :white_check_mark: [Anime Fighting Simulator Calculator](https://anime-fighting-simulator.com)：Roblox Anime Fighting Simulator游戏工具\n\n### 2026 年 1 月 2 号添加\n* :white_check_mark: [PokePath-TD](https://play-pokepath-td.online/)：PokePath-TD一款海外爆火的宝可梦塔防游戏，在9 条不同的路线上抵御一波又一波的敌人，失败了也可以累积资源和升级宝可梦成员。\n\n### 2025 年 12 月 27 号添加\n* :white_check_mark: [Riddle School](https://riddle-school.online/)：Riddle School 是一款以校园为背景的解谜冒险游戏，采用简单直观的点击操作方式，适合各类玩家上手。游戏通过一系列环环相扣的谜题，引导玩家不断思考不同道具和场景之间的关系。解谜过程清晰，让人能够专注于推理本身。\n\n### 2025 年 12 月 21 号添加\n#### shuiwuhen - [GitHub](https://github.com/290713469)\n* :white_check_mark: [Universal Tower Defense Calculator](https://universaltowerdefensecalculator.com)：Roblox 游戏 Universal Tower Defense 工具站\n\n### 2025 年 12 月 14 号添加\n#### seven(沈阳)\n* :white_check_mark: [Pips game](https://pipsgame.dev/): 每日逻辑谜题，你通过纯推理放置多米诺骨牌——无需猜测（Pips Game is a daily logic puzzle where you place dominoes using pure deduction — no guessing）\n\n### 2025 年 12 月 13 号添加\n* :white_check_mark: [Duck Duck Clicker](https://duckduckclicker.space/)：如果你喜欢轻松的点击游戏，你应该试试Duck Duck Clicker。你只需轻点一只可爱的大鸭子，就可以建立自己的鸭子帝国——超级上瘾，而且有趣得令人惊讶。\n\n### 2025 年 12 月 11 号添加\n* :white_check_mark: [No Means Nothing Calculator](https://nomeansnothing.com)：Stream No Means Nothing 游戏工具网站\n\n### 2025 年 12 月 9 号添加\n#### shuiwuhen - [Github](https://github.com/290713469)\n* :white_check_mark: [A.I.L.A Calculator](https://ailagame.com)：Stream A.I.L.A 游戏工具网站\n\n### 2025 年 11 月 26 号添加\n#### Light(上海) \n* :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.\n\n#### Carys - [Github](https://github.com/Caron77ai)\n* :white_check_mark: [IdleOn Online](https://idleon.online/)：免费在线放置类 MMO RPG 游戏，打造角色、击败怪物，离线也能持续进展 - [更多介绍](https://idleon.online/)\n\n### 2025 年 11 月 19 号添加\n#### 肥萝卜(南昌) - [网站](https://wheelpage.com/)\n* :white_check_mark: [Coin Flip](https://wheelpage.com/coin-flip/)：抛硬币 · 用最简单的方式做决定\n\n### 2025 年 11 月 18 号添加\n#### levan(深圳) - [Github](https://github.com/L-Evan)\n* :white_check_mark: [nokiasnakegame.org](https://nokiasnakegame.org)：贪吃蛇游戏站（Free）\n\n### 2025 年 11 月 17 号添加\n#### Chaowen(深圳) - [Github](https://github.com/tanchaowen84/ice-breaker-games)\n* :white_check_mark: [IceBreakerGames](https://icebreakergame.net)：破冰游戏转盘，帮你快速决定聚会选什么破冰游戏，并帮你快速了解和准备对应破冰游戏\n\n### 2025 年 11 月 13 号添加\n#### zhang xinke - [Github](https://github.com/zxk1323)\n* :white_check_mark: [loldle](https://loldle.lol/)：英雄联盟猜谜小游戏\n\n### 2025 年 11 月 5 号添加\n#### shuiwuhen - [Github](https://github.com/290713469)\n* :white_check_mark: [Dispatch Calculator](https://dispatchcalculator.com)：Steam 上 Dispatch 这个游戏的计算器助手，帮助玩家针对不同任务进行分配人员信息。\n\n### 2025 年 10 月 30 号添加\n#### dvyutou - [Github](https://github.com/dvyutou)\n* :white_check_mark: [Scritchy Scratchy](https://scritchyscratchy.org)：Free Online Scratch Card Game | Play Now\n* :white_check_mark: [Blue White Flag](https://bluewhiteflag.org)：Play Blue Flag White Flag Games Online Free\n\n#### 290713469 - [Github](https://github.com/290713469)\n* :white_check_mark: [Anime Last Stand Calculator](https://anime-last-stand.com)：Anime Last Stand 游戏计算器，帮助玩家快速做出组队策略。\n\n#### lucen\n* :white_check_mark: [Icebreaker Games](https://icebreaker-games.org/zh)：破冰游戏：搜索、筛选、按步骤直接开玩。\n\n### 2025 年 10 月 22 号添加\n#### 水无痕(杭州) \n* :white_check_mark: [WaHaGameStore](https://wahagamestore.com)：在线 HTML 游戏，免登录、免下载\n\n### 2025 年 10 月 21 号添加\n#### James(guangzhou) - [Github](https://github.com/sky4366)\n* :white_check_mark: [Games Hub](https://www.mangofunplay.com/)：HTML5 游戏集合站点\n  \n### 2025 年 10 月 17 号添加\n#### Johnson(上海) - [Github](https://github.com/johnson-eddie)\n* :white_check_mark: [PVZ Fusion](https://pvzfusion.io/)：  植物大战僵尸的创新粉丝版本,引入革命性的植物融合系统,玩家可以组合经典植物创造强大的混合防御者,提供无限阳光资源和全新战略玩法\n\n### 2025 年 9 月 7 号添加\n#### aiinlink\n* :white_check_mark: [多人聚会小游戏 bestpartygames](https://www.bestpartygames.net/)：多人聚会小游戏网站，可以玩谁是卧底，狼人杀，真心话大冒险等等游戏\n\n### 2025 年 8 月 8 号添加\n#### ckfanzhe（深圳）\n* :white_check_mark: [Minecraft-Easyserver](https://github.com/ckfanzhe/minecraft-easyserver)：Minecraft 游戏的轻量级管理面板，可以通过面板快速下载搭建MC服务器、管理白名单&权限、管理世界&材质资源、日志与命令执行、服务器性能监控，一键搭建MC游戏服务器。\n\n#### Nico(长沙) - [Github](https://github.com/yijianbo), [博客]( https://biofy.cn/nico)\n* :white_check_mark: [Wordless](https//wordless.online)：类似 Wordle 的在线猜单词 AI 游戏，6次机会猜出英文单词，既能练英语又能动脑子，完全停不下来！也提供了 [Chrome 插件版本](https://chromewebstore.google.com/detail/wordless-game/ejkdnnekbieingpiciajgpedhplafocp)\n\n### 2025 年 8 月 3 号添加\n#### Ethan Sunray\n* :white_check_mark: [Connections Hint](https://connectionshint.cc/)：收集了《纽约时报》Connections 游戏从上线至今每一期的答案和解谜提示，每日更新。\n\n### 2025 年 7 月 24 号添加\n#### Eagien(杭州)\n* :white_check_mark: [森林中的99个夜晚攻略](https://99nightsintheforest.online)：掌握《99个森林之夜》全攻略！提供生存策略、制作秘籍、怪物情报和专家技巧，助你成功度过全部99个夜晚。 - [更多介绍]()\n\n### 2025 年 7 月 14 号添加\n#### 刘三（上海）\n* :white_check_mark: [Grow a Garden Calculator](https://www.growagardencalculator.quest/)：实时计算 Roblox 游戏中水果价值、变异倍率、好友增益等，帮助你快速优化收益！ \n\n### 2025 年 7 月 10 号添加\n#### Jsonchao (深圳) - [Github](https://github.com/JsonChao), [博客](https://juejin.cn/user/4318537403878167)\n* :white_check_mark: [Sand Blast Block Puzzle](https://sand-blast-block-puzzle.com/)：《沙爆方块拼图》是一款创新的沙流物理拼图游戏，融合了经典方块拼图的策略性与沙流模拟的沉浸感。玩家需要在方格中放置三种不同形状的彩色方块，方块落下后会转化为沙流，玩家需巧妙布局，形成同色沙流的完整横线以清除并得分。游戏没有时间限制，适合任何年龄段的玩家，既能放松心情，又能锻炼思维。无需下载，支持离线游戏，随时随地畅玩。\n\n### 2025 年 7 月 3 号添加\n#### Jsonchao (深圳) - [Github](https://github.com/JsonChao), [博客](https://juejin.cn/user/4318537403878167)\n* :white_check_mark: [growagarden-calculator](https://www.growagarden-calculator.net/)：页面精美、功能强大的 《Grow a Garden》 游戏交易 / 攻略工具，在疯狂圈粉 1600 万 + 玩家的 Roblox 神作《Grow a Garden》中，想靠“三秒算账”闯荡菜市？这就是 Grow a Garden Calculator 存在的意义：帮你秒算作物价值、预测突变收益，还附送一整套天气 / 交易 / 攻略工具，专治“不会算、不想算、算得慢”。\n* :white_check_mark: [SZ Games](https://sz-games.online/)：提供超过 1000 款免费在线游戏的平台，涵盖动作、益智、赛车、模拟等多种类型。无需下载，直接在浏览器中畅玩，支持 PC、手机、平板等多平台设备\n\n### 2025 年 7 月 1 号添加\n#### 一箭（杭州） \n* :white_check_mark: [种植花园计算器](https://growagardencalculator.click/)：使用“种植花园价值计算器”来规划您的 Roblox 作物，应用金色和彩虹等突变，并在每次收获时增加您的 Sheckles。\n* :white_check_mark: [随机游戏生成器](https://randomgame.click): 不知道玩什么游戏？试试我们的随机游戏生成器，一键帮你发现有趣、免费的在线游戏，支持多平台，海量精选游戏等你来玩！\n\n### 2025 年 6 月 2 号添加\n#### wenyue(深圳) - [Github](https://github.com/chanmankong)\n* :white_check_mark: [无畏契约准星库和生成器](https://valorantcrosshair.org/zh-CN/)：无畏契约准星库和生成器，玩家的得力帮手\n\n### 2025 年 5 月 26 号添加\n#### aipromptdirectory - [Github](https://github.com/aipromptdirectory)\n* :white_check_mark: [mergefellasAI](https://mergefellas.fun/)：merge fellas - Italian Brainrot Merge Game 2025\n\n### 2025 年 5 月 4 号添加\n#### wang1309(深圳) - [github](https://github.com/wang1309)\n* :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!\n\n### 2025 年 4 月 21 号添加\n#### LudwigChan - [github](https://github.com/ludwig-chan)\n* :clock8: [sunrise](https://ludwig-chan.github.io/sunrise/): 集养成、经营、回合制、肉鸽、策略于一体的，以饥荒、星铁、牧场物语为原型的一个极简风格的 mud 游戏\n\n### 2025 年 4 月 13 号添加\n#### Qiwei - [github](https://github.com/qiweiii)\n* :white_check_mark: [Flappy-minimal](https://flappy.buildin.fun/): 极简版 web flappy bird（100% AI 作品），纯娱乐项目，快来玩吧\n\n### 2025 年 4 月 1 号添加\n#### zeikia(广州) - [Github](https://github.com/zeikia)\n* :white_check_mark: [Kour io](https://kourio.online/)：在线FPS游戏网站（免费）\n\n### 2025 年 3 月 29 号添加\n#### rain(深圳) - [Github](https://github.com/wang1309)\n* :white_check_mark: [shopaholic game](https://shopaholic-game.com/)：体验购物的游戏（免费）\n\n### 2025 年 3 月 24 号添加\n#### 隋十一(北京) - [Github](https://github.com/Hazards10)\n* :white_check_mark: [Car Games Unblocked](https://cargamesunblocked.net/)：汽车驾驶类游戏网站\n\n### 2025 年 3 月 5 号添加\n#### zoe(武汉) - [Github](https://github.com/dragonsweepers/)\n* :white_check_mark: [dragonsweeper](https://dragonsweepers.com)：创新型的扫雷游戏，融合了经典FC时代日式角色扮演和现代即时游戏元素\n\n### 2025 年 2 月 28 号添加\n#### suwen(广州) - [Github](https://github.com/sprunkicorruptbox3)\n* :white_check_mark: [Sprunki Corruptbox 3](https://corrupt-box.net)：Sprunki Corruptbox系列游戏MOD网站，可以免费在线玩。\n\n### 2025 年 2 月 23 号添加\n#### rain (深圳) - [Github](https://github.com/wang1309/), [博客](https://wang1309.github.io/)\n* :white_check_mark: [mewtrix.com](https://mewtrix.com/)：全新的益智游戏体验。专注于让玩家能够轻松享受解谜的乐趣，支持多种语言，相比传统的消消乐或俄罗斯方块等经典益智游戏，Mewtrix 引入了创新性的玩法，让您的体验更加丰富有趣。\n\n### 2025 年 2 月 20 号添加\n#### 奥利弗(北京) - [Github](https://github.com/Oliverwqcwrw), [博客](https://www.aolifu.org/)\n* :white_check_mark: [摸鱼小栈](https://moyu.aolifu.org)：小游戏集合 - [更多介绍](https://www.aolifu.org/article/moyu)\n\n### 2025 年 1 月 4 号添加\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Sprunki Pyramixed](https://sprunkipyramixed.net/)：创新的音乐节奏游戏，是 Sprunki 的 MOD\n\n#### 前端小周(郑州) -  [个人主页](https://www.inav.site/)\n* :white_check_mark: [情侣飞行棋小程序](https://www.inav.site/static/mp/chess.png)：情侣飞行棋 情侣升温小游戏 可自定义棋盘 让你们的感情更进一步的小tips～\n\n#### yangjuzi - [Github](https://github.com/yangjuzi)\n* :white_check_mark: [画什么](https://whattodraw.art)：从画圆开始，看看你画的圆可以得多少分\n"
  },
  {
    "path": "README-Programmer-Edition.md",
    "content": "## 中国独立开发者项目列表（程序员版）\n\n[主板面点这里](https://github.com/1c7/chinese-independent-developer/)\n\n**程序员版和主版面的区别**：\n* 程序员版：用户是程序员，会用命令行，知道 `npm install` 等。列表里的产品是开源博客/命令行工具等\n* 主版面：用户不是程序员，产品是 网站/App/桌面端应用 必须打开即用\n\n<!--\n**为什么开这个列表**：\nIssue 和 PR 里偶尔有人提交一些不错的东西，但打开一看，不是普通用户能用的东西，\n而是要用命令行 `npm install` 以及需要写一些代码。\n没法加到主版面里去，不是因为不好，只是因为类型不合。\n但是我觉得这些项目也需要曝光度，所以单独开这一个列表。\n\n程序员版开始于 2019 年 4 月 11 号, 主版面开始于 2018 年 3 月\n-->\n\n### 2026 年 3 月 10 号添加\n\n#### my19940202(上海) - [Github](https://github.com/my19940202)\n* :white_check_mark: [Cursor带我学英语](https://github.com/my19940202/cursor-thinking-stat)：本地采集cursor对话英语语料信息，通过可视化方式分析，辅助程序员提升技术英语的学习，辅助写好英语prompt\n\n### 2026 年 3 月 1 号添加\n#### @leodenglovescode(北京) - [Github](https://github.com/leodenglovescode), [博客](https://leodeng.dev)\n* :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\n\n### 2026 年 1 月 14 号添加\n#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://momei.app/)\n* :white_check_mark: [墨梅博客](https://github.com/CaoMeiYouRen/momei)：博客平台，专为技术开发者和跨境内容创作者量身定制。专业、高性能、国际化 - [更多介绍](https://docs.momei.app/)\n\n### 2025 年 12 月 2 号添加\n#### phishdestroy - [GitHub](https://github.com/phishdestroy)\n* :white_check_mark: [Destroylist](https://github.com/phishdestroy/destroylist)：Auto-updating phishing blacklist for threat intelligence\n\n### 2025 年 11 月 23 号添加\n#### wtechtec(深圳) - [Github](https://github.com/WtecHtec), [博客](https://blogs.xujingyichang.top/)\n* :white_check_mark: [web-hooker](https://github.com/WtecHtec/web-hooker)：将网页变成可调用的 API\n\n### 2025 年 11 月 3 号添加\n#### L1nSn0w(广州) - [Github](https://github.com/lin-snow)\n* :white_check_mark: [Ech0](https://github.com/lin-snow/Ech0)：新一代开源、自托管、专注思想流动的轻量级联邦发布平台，支持 ActivityPub 协议、PWA、CLI 管理与跨端适配 - [更多介绍](https://echo.soopy.cn)\n\n### 2025 年 9 月 25 号添加\n#### KAY53N - [Github](https://github.com/KAY53N/rusty-req)\n* :white_check_mark: [Rusty-Req](https://github.com/KAY53N/rusty-req)：基于 Rust 和 Python 的高性能异步请求库，适用于需要高吞吐量并发 HTTP 请求的场景。核心并发逻辑使用 Rust 实现，并通过 PyO3 和 maturin 封装为 Python 模块，将 Rust 的性能优势与 Python 的易用性结合。\n\n\n### 2025 年 9 月 24 号添加\n#### hzn6426 - [Github](https://github.com/hzn6426)\n- :white_check_mark: [Snapper 权限系统微服务版](https://gitee.com/ifrog/snapper-boot)：专注系统数据权限（数据权限、业务权限、列权限），让权限更简单，让数据更安全\n- :white_check_mark: [Snapper 权限单机版](https://gitee.com/ifrog/snapper-standalone)：专注系统数据权限，让权限更简单，让数据更安全 - [演示地址](https://admin.baomibing.com/user/login) 演示账号 ximen/123456\n\n\n### 2025 年 9 月 4 号添加\n#### ChiruMori(辽宁) - [Github](https://github.com/ChiruMori/EffectMidi)\n* :white_check_mark: [EffectMidi](https://github.com/ChiruMori/EffectMidi)：PC+开发板控制MIDI键盘灯（需用户自行接线烧录）- [更多介绍](https://mori.plus/archives/effect-midi-01)\n\n### 2025 年 8 月 22 号添加\n#### Safe3(武汉)\n* :white_check_mark: [南墙-WEB应用防火墙](https://waf.uusec.com)：工业级免费、高性能、高扩展，支持 AI 和语义引擎的 Web 应用和 API 安全防护产品\n* :white_check_mark: [OpenResty Manager](https://om.uusec.com)：现代化、安全、美观的主机管理面板，OpenResty Edge 的开源替代品\n\n### 2025 年 8 月 21 号添加\n#### Mao Kaiyue - [Github](https://github.com/MKY508)\n* :white_check_mark: [QueryGPT](https://github.com/MKY508/QueryGPT)：自然语言数据库查询系统。基于 OpenInterpreter 开发，让非技术人员也能用中文查询数据库。比如问\"上个月销售最好的产品是什么\"，系统会自动执行查询并生成图表。目前在生产环境稳定运行，每天处理上百次查询请求\n\n### 2025 年 8 月 8 号添加\n#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd/)\n* :white_check_mark: [草梅 Auth](https://github.com/CaoMeiYouRen/caomei-auth)：草梅 Auth 是基于 Nuxt 全栈框架的统一登录平台。支持 OAuth2.0 协议，集成邮箱、用户名、手机号、验证码、社交媒体等多种登录注册方式 - [更多介绍](https://auth-docs.cmyr.dev/)\n\n### 2025 年 8 月 8 号添加\n#### lizhichao - [Github](https://github.com/lizhichao)\n* :white_check_mark: [根据 sql ddl 生成 gorm model](https://gorm.vicsdf.com/)：支持 mysql 和 pgsql ，根据 int bigint 自动映射到 go 对应的类型。由浏览器 wasm 执行 可以离线使用\n\n### 2025 年 8 月 4 号添加\n#### 何夕2077 (武汉)- [GIthub](https://github.com/justlovemaki) [小宇宙](https://www.xiaoyuzhoufm.com/podcast/683c62b7c1ca9cf575a5030e)\n* :white_check_mark: [AIClient-2-API](https://github.com/justlovemaki/AIClient-2-API)：模拟Gemini CLI和Kiro 客户端请求，兼容OpenAI API。可每日千次Gemini模型请求， 免费使用Kiro内置Claude模型。通过API轻松接入任何客户端，让AI开发更高效！\n\n### 2025 年 7 月 26 号添加\n#### Ch3nyang(南京) - [Github](https://github.com/wcy-dt), [博客](https://blog.ch3nyang.top/)\n* :white_check_mark: [PongHub](https://github.com/WCY-dt/ponghub)：服务状态监控网站，旨在帮助用户监控和验证服务的可用性。使用 GitHub Actions + GitHub Pages，一键部署、无需服务器。\n\n### 2025 年 7 月 24 号添加\n#### 胡图图不涂涂-[GitHub](https://github.com/hukdoesn)\n* :white_check_mark: [LiteOps](https://github.com/opsre/LiteOps)：CI/CD 平台（专注实用性）。只解决真问题 —— 自动化构建、部署 一体化平台。开源轻量级DevOps平台 - [更多介绍](https://liteops.ext4.cn)\n\n### 2025 年 7 月 10 号添加\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)\n* :white_check_mark: [Cealer](https://github.com/SpaceTimee/Sheas-Cealer-Droid)：安卓端 SNI 伪造工具，无需代理即可合法加速 Github, Steam, Pixiv 等网站的直连，让你的网络冲浪畅快无阻\n\n### 2025 年 7 月 4 号添加\n#### 欲饮琵琶码上催 - [Github](https://github.com/ajiho)\n* :white_check_mark: [Laravel 中文网](https://laravel.wiki)：全球最流行的PHP框架 Laravel 的中文文档\n\n### 2025 年 7 月 1 号添加\n#### RainbowBird | 洛灵 (上海) - [Github](https://github.com/luoling8192), [博客](https://blog.luoling.moe)\n* :white_check_mark: [Telegram Search](https://github.com/groupultra/telegram-search)：功能强大的 Telegram 聊天记录搜索工具，支持向量搜索和语义匹配\n\n### 2025 年 6 月 27 号添加\n#### sing1ee(上海) \n* :white_check_mark: [Gemini CLI Docs](https://gemini-cli.xyz/docs/)：Gemini CLI 相关技术文档和开发者资源（持续更新）\n\n### 2025 年 6 月 24 号添加\n#### Xiao-zaiyi(广西) - [Github](https://github.com/xiao-zaiyi/illa-helper)\n* :white_check_mark: [浸入式学语言助手](https://github.com/xiao-zaiyi/illa-helper)：基于\"可理解输入\"理论的浏览器扩展，帮助你在日常网页浏览中自然地学习语言 - [更多介绍](https://github.com/xiao-zaiyi/illa-helper/blob/master/README_ZH.md)\n\n### 2025 年 6 月 3 号添加\n#### IndieMakerKevin(成都) - [Github](https://github.com/PennyJoly)\n* :white_check_mark: [NuxtPro开源版本](https://github.com/PennyJoly/NuxtPro)：企业级 SaaS 出海模板（基于 Nuxt3），预集成 Stripe/Cream 支付、谷歌登录、多语言路由和SEO工具。快速构建 SSR 的全球化Web应用，开箱即用。1 小时内快速完成 MVP 开发，验证需求，并出海创收 - [更多介绍](https://nuxtpro.com)\n\n### 2025 年 5 月 21 号添加\n#### 韩数 - [Github](https://github.com/hanshuaikang)\n* :white_check_mark: [AI-Media2Doc](https://github.com/hanshuaikang/AI-Media2Doc)：一键将视频和音频转化为小红书/公众号/知识笔记/思维导图等各种风格的文档\n\n### 2025 年 5 月 17 号添加\n#### WeNext - [Github](https://github.com/weijunext)\n* :white_check_mark: [Nexty.dev](https://nexty.dev): 多场景全栈 SaaS 开发模板。主要特性：1. 内置完整的一次性支付和订阅支付加积分、续订更新积分和退订扣积分的流程\n2. 内置可视化界面管理定价卡片的管理功能，轻松且安全地创建和修改你的定价卡片\n3. 内置高级CMS模块，不仅支持必备的文章信息，还支持设置置顶、文章状态和访问权限，适用于免费博客和付费newsletter场景\n4. 提供 AI Demo，帮助不熟悉AI功能开发的开发者快速学习和应用\n\n### 2025 年 5 月 13 号添加\n#### masz\n* :x: [ui2vue](https://www.ui2vue.cn)：生成 vue3 代码的工具网站，支持拖拽&编辑方式添加组件，可直接导出vue3代码\n\n### 2025 年 5 月 11 号添加\n#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd/)\n* :white_check_mark: [afdian-linker](https://github.com/CaoMeiYouRen/afdian-linker)：集成了爱发电 API，提供统一的订单管理、赞助支付和外部查询能力。基于 Nuxt 3 & TypeScript 的全栈项目。\n\n### 2025 年 5 月 10 号添加\n#### xiaohanyu - [github](https://github.com/xiaohanyu)\n* :white_check_mark: [YAMLResume](https://yamlresume.dev/)：Resumes as Code in YAML，用 YAML 格式来撰写简历并生成精美专业的 PDF\n\n### 2025 年 5 月 9 号添加\n#### Crayon - [GitHub](https://github.com/ZhuoZhuoCrayon)\n* :white_check_mark: [throttled-py](https://github.com/ZhuoZhuoCrayon/throttled-py)：Python 限流工具，支持多种算法（固定窗口，滑动窗口，令牌桶，漏桶 & GCRA）及存储（Redis、内存），高性能\n\n### 2025 年 4 月 30 号添加\n#### ysykzheng - [github](https://github.com/ysykzheng)\n* :white_check_mark: [TextReadTTS.com](https://textreadtts.com/)：免费文本转语音接口（Free TTS API），免费额度有限\n\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :white_check_mark: [Sundry](https://github.com/DuckDuckStudio/Sundry)：WinGet 本地清单管理工具，让您更方便地查看、移除清单。\n\n### 2025 年 4 月 29 号添加\n#### IndieMakerKevin(成都) - [Twitter](https://x.com/PennyJoly)\n* :white_check_mark: [NuxtPro](https://nuxtpro.com)：基于Nuxt3的企业级SaaS出海模板，预集成Stripe/Cream支付、谷歌登录、多语言路由和SEO工具。快速构建SSR的全球化Web应用，开箱即用.\n\n### 2025 年 4 月 25 号添加\n#### 西风逍遥游(湾区) - [Github](https://github.com/sunxfancy/SSUI)\n* :white_check_mark: [SSUI](https://github.com/sunxfancy/SSUI)：基于安全 Python 脚本的 stable diffusion AI 绘图工具，可以根据脚本中函数的类型自动生成 UI 界面，能方便快捷地复现其他用户的工作流\n\n### 2025 年 4 月 22 号添加\n#### zhtyyx(上海) - [Github](https://github.com/zhtyyx)\n* :white_check_mark: [ioe 库存管理系统](https://github.com/zhtyyx/ioe)：基于 Django 开发的综合性库存管理系统，专为零售商店、小型仓库和商品销售场所设计。系统提供了完整的商品管理、库存跟踪、销售记录、会员管理和数据分析功能，帮助企业高效管理库存和销售流程\n\n### 2025 年 4 月 15 号添加\n#### daya0576(上海) - [博客](https://changchen.me)\n* :white_check_mark: [beaverhabits](https://github.com/daya0576/beaverhabits)：无需设定目标的习惯追踪工具。基于 Python 开发的自托管习惯追踪 Web 应用，帮助用户轻松记录和管理日常习惯。它提供适配移动端的直观界面，专注于习惯的持续养成，而非单纯追求目标达成，让养成好习惯变得更自然\n\n### 2025 年 3 月 17 号添加\n#### dodid - [Github](https://github.com/dodid)\n* :x: [PAC代理自动配置管理器](https://github.com/dodid/pac-proxy-manager)：管理代理自动配置文件（PAC），支持灵活的代理规则设置\n\n### 2025 年 2 月 10 号添加\n#### yvling(合肥) - [Github](https://github.com/yv1ing), [博客](https://blog.yvling.cn)\n* :white_check_mark: [茉莉审计](https://github.com/yv1ing/MollyAudit)：LangChain 驱动的自动代码审计工具\n\n### 2025 年 1 月 12 号添加\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :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 🚀 在你的仓库中创建和更新网站地图\n\n### 2024 年 12 月 28 号添加\n#### javayhu - [Github](https://github.com/javayhu), [Twitter](https://x.com/javay_hu)\n* :white_check_mark: [Free Directory Boilerplate](https://github.com/javayhu/free-directory-boilerplate)：开源的导航站模板，Nextjs + Authjs + Sanity + ShadcnUI\n\n### 2024 年 12 月 23 号添加\n#### 喻灵(合肥) - [Github](https://github.com/yv1ing), [博客](https://yvling.cn/)\n* :white_check_mark: [MollyBlog](https://github.com/yv1ing/MollyBlog)：个人博客系统（简单易用）\n\n### 2024 年 11 月 15 号添加\n#### xtthaop(北京) - [Github](https://github.com/xtthaop), [博客](https://zxctb.top)\n* :white_check_mark: [知行笔记 - Note, Share, Possess](https://github.com/xtthaop/zxnote-web)：开源内容管理系统，可组合开源博客 [知行博客](https://github.com/xtthaop/zxblog-web) 搭建个人博客，记录，分享，拥有！\n\n### 2024 年 11 月 3 号添加\n#### d2learn - [Github](https://github.com/d2learn), [论坛](https://forum.d2learn.org/category/9/xlings)\n* :white_check_mark: [xlings](https://github.com/d2learn/xlings)： 一个 `⌈软件安装、一键环境配置、AI代码提示、实时编译运行、教程教学项目搭建和管理⌋` 编程学习和课程搭建工具🛠️ - [更多介绍](https://d2learn.org/xlings)\n\n### 2024 年 10 月 28 号添加\n#### 草梅友仁 - [Github](https://github.com/CaoMeiYouRen), [博客](https://blog.cmyr.ltd)\n* :white_check_mark: [RSS Impact](https://github.com/CaoMeiYouRen/rss-impact-server)：RSS Impact 是一个支持 Hook 的 RSS 订阅工具，支持 推送通知、Webhook 、下载、BitTorrent、AI 大模型 等多种形式的 Hook 。\n为什么做这个工具：在使用 RSS 的过程中，我产生了一些需求，例如 推送通知、AI 总结、下载图片、下载 BitTorrent 等，为此还分别写了不同的工具。\n然后我就意识到，这些需求都可以概括为 `RSS 轮询` + `执行某个操作`，因此，将这些操作抽象出来，作为一个 Hook，是更合适的选择，也更容易复用。\n\n### 2024 年 10 月 13 号添加\n#### 阿凯呵 - [博客]( https://www.sodair.top)\n* :white_check_mark: [LunaSwapping](https://github.com/loxi-opensource/luna-swapping)：开源的 AI 换脸应用解决方案。1 张照片快速生成高质量 AI 写真照，提供小程序端、服务端、管理后全套代码。内置 10万+ 高清写真模板，可自定义模板管理。提供基础 AI 换脸能力，可构建等多场景玩法。\n\n### 2024 年 10 月 7 号添加\n* :white_check_mark: [Awesome-Iwb](https://github.com/Awesome-Iwb/Awesome-Iwb/)：一体机和电子白板实用软件合集\n\n### 2024 年 10 月 2 号添加\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :white_check_mark: [芙芙工具箱开发工具](https://github.com/DuckDuckStudio/Fufu_Dev_Tools/)：芙芙工具箱的开发工具包，可以进行一些代码检查和连续尝试操作，后续也会添加更多的功能。\n\n### 2024 年 8 月 5 号添加\n#### OpenDataLab(上海) - [Github](https://github.com/opendatalab)\n* :white_check_mark: [LabelU](https://github.com/opendatalab/labelU)：开源标注工具（轻量级）- [更多介绍](https://github.com/opendatalab/labelU/blob/main/README_zh-CN.md)\n* :white_check_mark: [LabelLLM](https://github.com/opendatalab/LabelLLM)：大模型对话标注平台（开源免费）- [更多介绍](https://github.com/opendatalab/LabelLLM/wiki/README%E2%80%90zh)\n\n### 2024 年 7 月 22 号添加\n#### ufo5260987423 - [Github](https://github.com/ufo5260987423)\n* :white_check_mark: [scheme-langserver](https://github.com/ufo5260987423/scheme-langserver)：主打 Scheme 语言局部变量自动补全的语言服务器，还有类型推断功能。\n\n### 2024 年 7 月 17 号添加\n#### Zen Huifer - [Github](http://github.com/huifer)\n* :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)\n\n### 2024年7月15号添加\n#### 0x676e67 - [Github](https://github.com/0x676e67)\n* :white_check_mark: [reqwest-impersonate](https://github.com/0x676e67/reqwest-impersonate)：简单而强大的 Rust HTTP/WebSocket 客户端（模拟 TLS/JA3/JA4/HTTP2 指纹）\n\n### 2024年6月28号添加\n#### LeoCodeEasy - [Github](https://github.com/LeoCodeEasy)\n* :white_check_mark: [tinrh](https://tinrh.vercel.app)：无需路由即可实现页面切换，适用于Vue3\n\n### 2024年6月25号添加\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :clock8: [GitHub Labels Manager](https://github.com/DuckDuckStudio/GitHub-Labels-Manager/)：自动帮你复制仓库标签、获取仓库标签、清空已有标签的工具 - 因与 [GitHub Cil](https://cli.github.com/manual/gh_label_clone) 重复关闭\n\n### 2024年6月4号添加\n#### 0x676e67 - [Github](https://github.com/0x676e67)\n* :white_check_mark: [vproxy](https://github.com/0x676e67/vproxy)：简单而强大的 Rust HTTP/Socks5 代理，允许使用从 CIDR 地址计算的 IP 绑定发起网络请求 - [更多介绍](https://github.com/0x676e67/vproxy)\n\n### 2024年5月29号添加\n#### 鬼画符 - [主页](http://www.guanleiming.com)\n* :white_check_mark: [translate.js](https://github.com/xnx3/translate)：两行 JS 实现 HTML 全自动翻译。无需改动页面、无语言配置文件、无 API Key、对 SEO 友好！\n* :white_check_mark: [templatespider](https://github.com/xnx3/templatespider)：扒网站工具，看好哪个网站，指定好 URL，自动扒下来做成HTML模版。所见网站，皆可为我所用！\n* :white_check_mark: [wangmarket](https://github.com/xnx3/wangmarket)：私有化部署自己的 SAAS 云建站系统，后台开通管理网站，每个网站独立管理。不需任何服务器及后端知识。一台1核2G 服务器可建上万独立网站。\n\n### 2024年5月23号添加\n#### LIGHT CHASER - [Github](https://github.com/xiaopujun)\n* :white_check_mark: [xiaopujun(DAGU)](https://github.com/xiaopujun/light-chaser)：开源、免费、简单、高效的 Web 端数据可视化设计工具。可用于数据分析、数据看板、数据大屏等（内置蓝图事件编辑器）\n\n### 2024年5月17号添加\n#### lalilu (深圳) - [Github](https://github.com/cy745)\n* :white_check_mark: [LMusic](https://github.com/cy745/LMusic)：简洁好看，回归听歌本质的本地音乐播放器\n\n### 2024年5月6号添加\n#### Bess Croft(武汉) - [Github](https://github.com/besscroft), [博客](https://besscroft.com/)\n* :white_check_mark: [PicImpact](https://github.com/besscroft/PicImpact)：摄影佬专用 ⌈相片集⌋，基于 Next.js 开发。\n\n#### rookie-luochao - [Github](https://github.com/rookie-luochao)\n* :white_check_mark: [openapi-ui](https://github.com/rookie-luochao/openapi-ui) 基于 swagger/openapi 规范的接口文档和接口测试工具, 支持后端框架接入，平替 swagger-ui，欢迎 pr 一起共同建设\n* :white_check_mark: [go-openapi-ui](https://github.com/rookie-luochao/go-openapi-ui) openapi-ui 的 golang 实现，支持常用 golang 后端开发框架，例如：gin、fiber、echo(欢迎提 pr 补充其他 golang 后端框架)，欢迎补充其他编程语言的后端框架接入包\n\n### 2024年4月28号添加\n#### kisslove - [Github](https://github.com/kisslove/web-monitoring)\n- :white_check_mark: [前端性能监控平台](https://hubing.online/)：日活跃、用户行为记录、访问日志、JS 错误日志、API 请求详情、访问性能评估，开发者和运营必须关心的各种数据（开源）\n\n### 2024年4月26号添加\n#### zhangdi - [Github](https://github.com/zhangdi168)\n- :white_check_mark: [VitePressSimple](https://github.com/zhangdi168/VitePressSimple):基于 Wails2 开发的 Vitepress 可视化写作、可视化配置编辑的客户端工具，助力独立开发者快速搭建自己的产品手册或博客（开源、免费！） - [更多介绍](http://vpsimple.xiaod.co/)\n\n#### zyronon - [Github](https://github.com/zyronon), [博客](https://juejin.cn/user/377887729139502/posts)\n- :white_check_mark: [douyin](https://zyronon.gitee.io/douyin/)：Vue3 + Pinia + Vite5 仿抖音，完全度90% (Imitate TikTok with 90% completeness) [更多介绍](https://github.com/zyronon/douyin)\n\n### 2024年4月25号添加\n#### qwqcode(杭州) - [Github](https://github.com/qwqcode)\n* :white_check_mark: [Artalk](https://artalk.js.org/)：开源博客评论系统 - [更多介绍](https://github.com/ArtalkJS/Artalk)\n\n### 2024年4月22号添加\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :white_check_mark: [中文 Git](https://duckduckstudio.github.io/yazicbs.github.io/Tools/chinese_git/)：用中文命令操作 Git，使不熟悉英文的用户更轻松地使用 Git\n* :white_check_mark: [Power by 虚空终端](https://github.com/DuckDuckStudio/power_by_akasha_terminal)：简单的命令行装饰配置，把 Windows 终端变成虚空终端(或其他自定义内容)\n\n### 2024年4月19号添加\n#### wujunwei928(北京) - [Github](https://github.com/wujunwei928)\n* :white_check_mark: [edge-tts-go](https://github.com/wujunwei928/edge-tts-go)：基于微软 Edge 浏览器的大声朗读接口，开发的 TTS 文字转语音 Golang 工具，包含晓晓、云扬、云希等\"网红主播\"。\n* :white_check_mark: [parse-video](https://github.com/wujunwei928/parse-video)：Golang 短视频去水印工具：抖音,皮皮虾,火山,微视,最右,快手,全民小视频,皮皮搞笑,西瓜视频,虎牙,梨视频,Acfun,好看视频等\n\n### 2024年4月15号添加\n#### Hu Shenghao (南京) - [Github](https://github.com/hushenghao)\n* :white_check_mark: [Easter Eggs](https://github.com/hushenghao/AndroidEasterEggs)：Android 系统复活节彩蛋集合 App，包含了所有 Android 版本的系统彩蛋，并兼容到 Android 5.0 系统\n\n### 2024年4月9号添加\n#### lonnywong - [Github](https://github.com/trzsz/trzsz), [博客](https://trzsz.github.io/)\n* :white_check_mark: [trzsz](https://github.com/trzsz/trzsz)：trzsz ( trz / tsz ) 优秀的文件传输工具，和 lrzsz ( rz / sz ) 类似的、兼容 tmux 的文件传输工具 - [更多介绍](https://trzsz.github.io/)\n\n### 2024年3月18号添加\n#### 程序员鱼皮 - [Github](https://github.com/liyupi)\n* :white_check_mark: [Yuindex](https://github.com/liyupi/yuindex)：极客范儿的浏览器主页 Vue 3 + Node.js 全栈项目，自实现 web 终端 + 命令系统\n* :white_check_mark: [AI 自动回复工具](https://github.com/liyupi/yu-auto-reply)：可用于知识星球的 AI 问答机器人﻿\n\n### 2024年3月13号添加\n#### chaos-zhu [GitHub](https://github.com/chaos-zhu)\n* :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)\n\n### 2024年3月9号添加\n#### work7z [GitHub](https://github.com/work7z)\n* :clock8: [LafTools工具箱](https://github.com/work7z/LafTools)：免费安全开源跨平台的程序员工具箱，涵盖各类转换加解密解析等功能，还提供常用开发手册和资源页。除此之外，还将不断融入AI、笔记、时间管理等功能加入到这个工具箱，旨在帮助程序员更快更好的完成手头上的工作，期待成为程序员界的瑞士军刀 - [更多介绍](https://my.laf-tools.com)\n\n### 2024年2月2日添加\n---\n#### beavailable - [Github](https://github.com/beavailable)\n- :white_check_mark: [apt.sh](https://github.com/beavailable/apt.sh)：为 msys2 中的 pacman 提供一个用户友好的 shell 包装器\n\n### 2024年1月22日添加\n---\n#### Zen Huifer(浙江) - [Github](https://github.com/huifer)\n* :white_check_mark: [env-manager](https://gitee.com/pychfarm_admin/env-manager)：可视化的方式快捷切换环境\n\n### 2024年1月12日添加\n---\n#### Aooohan(北京) - [主页](https://github.com/aooohan)\n* :white_check_mark: [VersionFox](https://github.com/version-fox/vfox)：跨平台、可拓展的 SDK 版本管理工具, 支持 Nodejs、Java、Dart、Flutter 等多种SDK.\n\n### 2023年12月18日添加\n---\n#### mengxianliang(北京) - [主页](https://mengxianliang.com)\n* :white_check_mark: [XLUIKit](https://github.com/mengxianliang/XLUIKit)：iOS UI 工具集\n\n### 2023年12月11日添加\n---\n#### heygsc - [Github](https://github.com/heygsc)\n* :white_check_mark: [按钮样式库](https://ultra-button-docs.pages.dev/)：Vue 的按钮样式库，效果丰富。\n\n### 2023年12月8日添加\n---\n#### Meekdai(杭州) - [Github](https://github.com/Meekdai/), [博客](https://meekdai.com/)\n* :white_check_mark: [Gmeek](https://github.com/Meekdai/Gmeek)：超轻量级个人博客框架，只需 2 步配置轻松搭建。\n\n#### jianchang512(青岛) - [Github](https://github.com/jianchang512)\n* :white_check_mark: [pyvideotrans](https://github.com/jianchang512/pyvideotrans)：视频翻译和配音桌面软件，可将视频从一种语言翻译为另一种语言并配音，集成 OpenAI Whisper 语音识别、OpenAI-TTS/edgeTTS 语音合成、Google/Deepl/ChatGPT/Baidu 字幕翻译、音视频分离合并等功能\n\n\n### 2023年11月27日添加\n---\n#### Leo Song(上海) - [Github](https://github.com/LHRUN/bubble)\n* :white_check_mark: [Bubble](https://bubble-awesome-profile.vercel.app/)：收录 Github Profile 和 Readme Component 的网站\n\n### 2023年11月2日添加\n---\n### changwu - [Github](https://github.com/changwu/)\n* :white_check_mark: [专注私有部署的智能简历解析系统](https://github.com/changwu/cvparser)：基于自然语言处理和机器学习的高精准度简历解析系统，生产环境中海量简历解析检验，稳健性和智能性得到一致肯定。一次购买、永久许可。市面上唯一可以私有云部署（本地部署）一键安装试用的智能简历解析系统，数据安全完全掌握在自己手里。\n\n### 2023年9月6日添加\n---\n#### gngpp - [Github](https://github.com/gngpp)\n* :white_check_mark: [opengpt](https://github.com/gngpp/opengpt)：逆向工程的 `ChatGPT` 代理（绕过 Cloudflare 403 Access Denied） - [更多介绍](https://github.com/gngpp/opengpt/blob/main/README_zh.md)\n* :white_check_mark: [xunlei](https://github.com/gngpp/xunlei)：`Linux` 迅雷下载服务（支持OpenWrt/Alpine/Docker）- [更多介绍](https://github.com/gngpp/xunlei/blob/main/README.md)\n\n### 2023年8月21日添加\n---\n#### HildaM(广东) - [Github](https://github.com/HildaM)\n* :white_check_mark: [SparkDesk-api](https://github.com/HildaM/sparkdesk-api)：讯飞星火大模型 Python API\n\n#### 百年孤独(成都) - [Github](https://github.com/everydoc)\n* :white_check_mark: [JRebel 激活服务](https://github.com/everydoc/jrebel-license-server)：基于 SpringBoot 的 JRebel 激活服务，支持Docker，也可直接使用我提供的地址（只支持IPv6） - [更多介绍](https://jrebel.imjcker.com:1314/)\n\n\n### 2023年8月12日添加\n---\n#### hncboy(杭州) - [Github](https://github.com/hncboy)\n* :white_check_mark: [AI 蜂巢](https://github.com/hncboy/ai-beehive)：基于 Java 使用 Spring Boot 3 和 JDK 17，支持的功能有 ChatGPT、OpenAi Image、Midjourney、NewBing、文心一言等等\n\n#### kingwrcy - [Github](https://github.com/kingwrcy)\n* :white_check_mark: [mblog](https://mblog.club) 开源自部署的个人微博平台,支持单人/多人/评论/审核,支持markdown,支持前后分离/不分离 - [更多介绍](https://github.com/mblog-backend/backend)\n\n#### zcf0508 - [Github](https://github.com/zcf0508)\n* :white_check_mark: [vue-hook-optimizer](https://hook.huali.cafe)：用来分析和展示 Vue3 组件中变量和函数的调用关系，便于重构代码 - [更多介绍](https://github.com/zcf0508/vue-hook-optimizer)\n\n\n### 2023年8月4日添加\n---\n#### Morestrive - [Github](https://github.com/more-strive)\n* :white_check_mark: [vue-fabric-design](https://yft.design/)：基于 Canvas 的开源版\"创客贴\"，在线生成名片、海报、宣传单，支持 文字、图片、形状、线条、二维码 、条形码等 - [更多介绍](https://github.com/dromara/yft-design)\n\n### 2023年8月2日添加\n---\n#### WuKongIM - [Github](https://github.com/tangtaoit)\n:white_check_mark: [唐僧叨叨](https://tangsengdaodao.com/)：仿 Telegram 的自研开源聊天软件 - [更多介绍](https://github.com/TangSengDaoDao/TangSengDaoDaoServer)\n\n### 2023年8月1日添加\n---\n#### kalcaddle(杭州) - [Github](https://github.com/kalcaddle)\n* :white_check_mark: [kodbox](https://github.com/kalcaddle/kodbox)：支持各种云存储的云盘系统,便捷快速搭建团队或企业网盘\n\n### 2023年7月31日添加\n---\n#### RockChinQ(桂林) - [Github](https://github.com/RockChinQ)\n* :white_check_mark: [QChatGPT](https://github.com/RockChinQ/QChatGPT/blob/master/README.md)：😎高稳定性、🐒低耦合、🧩支持插件的 ChatGPT New Bing QQ 机器人🤖\n\n### 2023年7月29日添加\n---\n#### JingMatrix - [Github](https://github.com/JingMatrix)\n* :white_check_mark: [ChromeXt](https://github.com/JingMatrix/ChromeXt)：让用户可以在基于 Chromium 或 WebView 的浏览器上运行用户脚本以及打开开发者工具的 Xposed 模块 - [更多介绍](https://www.bilibili.com/video/BV1TV4y1b7zR/)\n\n### 2023年7月23日添加\n---\n#### Sunrisepeak - [Github](https://github.com/Sunrisepeak), [Bilibili](https://space.bilibili.com/65858958), [知乎](https://www.zhihu.com/people/SPeakShen)\n* :clock8:  [DStruct](https://github.com/Sunrisepeak/DStruct)：🔥 一个**易于移植/使用/学习且结构简洁**的**数据结构模板库**\n* :clock8:  [DSVisual](https://github.com/Sunrisepeak/DSVisual)：一个**数据结构可视化**组件库\n\n\n### 2023年7月22号添加\n---\n#### Tw93 - [Github](https://github.com/tw93), [Twitter](https://twitter.com/HiTw93), [博客](https://tw93.fun)\n* :white_check_mark: [Pake](https://github.com/tw93/Pake)：利用 Rust 轻松构建轻量级桌面应用\n* :white_check_mark: [潮流周刊](https://weekly.tw93.fun/)：潮流技术资讯，好用开源工具推荐的周刊\n\n### 2023年7月12号添加\n---\n#### Leafer(北京) - [Github](https://github.com/leaferjs/ui)\n* :white_check_mark: [LeaferJS](https://www.leaferjs.com/)： 绚丽多彩的 HTML5 Canvas 2D 图形渲染引擎， 可结合 AI 绘图、生成界面，能让你拥有瞬间创建100万个图形的超强能力，免费开源、易学易用、场景丰富 - [更多介绍](https://leaferjs.com/ui/blog/2023-06-28.html)\n\n### 2023年6月29号添加\n---\n#### tomsun28(绵阳) - [Github](https://github.com/tomsun28).\n* :white_check_mark: [HertzBeat](https://hertzbeat.com/)：[开源实时监控工具](https://github.com/dromara/hertzbeat) + [云服务](https://console.tancloud.cn/), 支持对应用网站，数据库，操作系统，中间件，云原生，网络等的监控告警通知，类似于 Zabbix 和 Prometheus - [更多介绍](https://github.com/dromara/hertzbeat)\n\n### 2023年6月16号添加\n---\n#### Fangnan700(合肥) - [Github](https://github.com/Fangnan700), [博客](https://blog.yvling.icu/)\n* :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/)\n\n### 2023年4月30号添加\n---\n#### cxxsucks(徐州)\n* :white_check_mark: [orient](https://github.com/cxxsucks/orient/releases/tag/v0.3.1)：Linux, macOS 与 Windows 上的*命令行*文件检索工具，含有`find`以及`Everything`的各种功能，外加内容查找、上下层目录查找等 - [更多介绍](https://github.com/cxxsucks/orient)\n\n### 2023年4月27号添加\n---\n#### jahnli - [Github](https://github.com/jahnli)\n* :white_check_mark: [awesome-flutter-plugins](https://github.com/jahnli/awesome-flutter-plugins)：好用的Flutter插件以便更效率的开发 - [更多介绍](https://github.com/jahnli/awesome-flutter-plugins)\n\n### 2023年4月7号添加\n---\n#### KissesJun - [GitHub](https://github.com/GWillS163)\n* :white_check_mark: [MASystem](https://github.com/GWillS163/howUseAIInAppEnginnering)：基于 ChatGPT+plantUML 的 软件工程 UML 图生成工具（demo，后续版本未开源）\n\n### 2023年3月19号添加\n---\n#### J。z(广州) - [Github](https://github.com/Jezemy/MASystem)\n* :white_check_mark: [MASystem](https://github.com/Jezemy/MASystem)：基于知识图谱的中文医疗问答系统\n\n### 2023年3月2号添加\n---\n#### S1NH - [博客](http://s1nh.org/)\n* :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/)\n\n### 2023年2月23号添加\n---\n#### 方楠(合肥) - [Github](https://github.com/Fangnan700), [博客](https://www.yvling.top/)\n* :white_check_mark: [AI-aides](https://github.com/Fangnan700/AI-aides)：接入了 ChatGPT 的人工智能助手。\n\n### 2023年2月10号添加\n---\n#### 一刀(杭州) - [Github](https://github.com/laosanyuan)\n* :white_check_mark: [DaoLang](https://github.com/laosanyuan/DaoLang)：简单易用的 C# 客户端多语言国际化应用框架\n\n### 2023年1月26号添加\n---\n#### Robert1037(清远) - [Github](https://github.com/Robert1037), [博客](https://rbtblog.com/)\n* :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 字符串或文件\n\n### 2023年1月24号添加\n---\n#### soonxf(wuhu) - [Github](https://github.com/soonxf), [博客](http://blog.340200.xyz)\n* :white_check_mark: [微型防火墙](https://github.com/soonxf/Micro-Firewall)：简单的 Linux web 防火墙\n\n### 2023年1月23号添加\n---\n#### Tsonglew(杭州) - [Github](https://github.com/tsonglew)\n* :white_check_mark: [intellij-etcdhelper](https://github.com/tsonglew/intellij-etcdhelper)：支持 JetBrains 全家桶的 etcd GUI 插件 - [更多介绍](https://plugins.jetbrains.com/plugin/19924-etcdhelper)\n\n### 2023年1月13号添加\n---\n#### dsy4567 - [Github](https://github.com/dsy4567)\n* :white_check_mark: [4399 on vscode](https://marketplace.visualstudio.com/items?itemName=dsy4567.4399-on-vscode) - 在 VScode 上玩 4399 小游戏, 帮助你劳逸结合, 提高开发效率\n\n### 2023年1月11日添加\n---\n#### liudf0716(北京) - [Github](https://github.com/liudf0716), [推特](https://twitter.com/staylightblow8)\n* :white_check_mark: [apfree-wifidog](https://github.com/liudf0716/apfree_wifidog): 高性能轻量级的 portal 解决方案。\n* :white_check_mark: [xfrpc](https://github.com/liudf0716/xfrpc): C 语言实现的内网穿透客户端，配合 frp 服务端使用。\n\n#### opensug(北京) - [Github](https://github.com/opensug/wp-opensug \"https://github.com/opensug/wp-opensug\"), [博客](https://www.opensug.org \"https://www.opensug.org\")\n* :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/\")\n\n### 2023年1月9日添加\n---\n#### 释慧利(上海) - [Github](https://github.com/shihuili1218)\n* :clock8:  [Klein](https://github.com/shihuili1218/klein)：基于 Paxos 的分布式集合工具库，包括分布式 ArrayList、分布式 HashMap、分布式缓存、分布式锁等。\n\n### 2023年1月7日添加\n---\n#### geektcp(深圳) - [Github](https://github.com/geektcp)\n* :white_check_mark:  [Namjagbarwa-wow](https://github.com/geektcp/Namjagbarwa-wow)：开源魔兽世界项目\n\n### 2022年12月4日添加\n---\n#### KID-joker - [Github](https://github.com/KID-joker)\n* :white_check_mark: [proxy-web-storage](https://github.com/KID-joker/proxy-web-storage): 借助 proxy，扩展了 web storage 的功能，使用起来，更加方便快捷，也更加强大。主要功能为保持值类型不变，可直接操控 Object、Array，支持监听数据变化和设置过期时间。\n* :white_check_mark: [npm-deprecated-check](https://github.com/KID-joker/npm-deprecated-check): 检查当前项目、全局或者指定安装包是否已弃用。\n\n### 2022年11月12日添加\n---\n#### zhennann（健哥/郑州） - [Github](https://github.com/zhennann)\n* :white_check_mark: [CabloyJS](https://github.com/zhennann/cabloy): 自带工作流引擎的 Node.js 全栈框架，面向开发者的低代码开发平台，更是一款兼具低代码的开箱即用和专业代码的灵活定制的 PAAS 平台\n\n\n### 2022年5月18日添加\n---\n#### haoziqaq(成都/无锡) - [Github](https://github.com/haoziqaq)\n* :white_check_mark: [Varlet UI](https://github.com/varletjs/varlet)：基于 Vue3 开发的 Material 风格移动端组件库。\n\n### 2022年3月12号添加\n---\n#### mnikn(广州) - [Github](https://github.com/mnikn)\n* :white_check_mark: [General Data Manager](https://github.com/mnikn/general-data-manager)：通用配置数据管理软件，能够根据数据格式自定义定制对应的编辑面板。支持 JSON 数据的可视化\n\n### 2022年2月21号添加\n---\n#### Yxliam(广州) - [Github](https://github.com/Yxliam)\n* :white_check_mark: [优工具](https://www.toolbon.com/)：在线工具箱\n\n### 2022年1月29号添加\n---\n#### 谢宇恒(深圳) - [主页](https://xieyuheng.com), [Github](https://github.com/xieyuheng)\n* :white_check_mark: [蝉语](https://cicada-lang.org)：形式化数学定理的程序语言。\n\n### 2021年11月11号添加\n---\n#### Eson(广州) - [Github](https://github.com/itiwll), [博客](https://blog.esonwong.com)\n* :white_check_mark: [Network RC](https://network-rc.esonwong.com)：Network RC 是运行在树莓派和浏览器上的网络遥控车软件 - [更多介绍](https://github.com/itiwll/network-rc/blob/master/README-cn.md)\n\n### 2021年11月6号添加\n---\n#### xnat9(成都) - [Github](https://github.com/xnat9)\n* :white_check_mark: [tiny](https://github.com/xnat9/tiny)：小巧的 Java 应用微内核框架, 可用于构建小工具项目，web 项目，各种大大小小的项目\n\n### 2021年10月28号添加\n---\n#### Mizhousoft(赣州) - [Github](https://github.com/mizhousoft)\n* :white_check_mark: [开源选型](https://open.mizhousoft.com)：为 Java、Golang、前端、Swift、Android 开发人员提供业界流行的组件\n\n\n### 2021年10月23号添加\n---\n#### xnat9(成都) - [Github](https://github.com/xnat9)\n* :white_check_mark: [GRule](https://github.com/xnat9/grule)：自创 Groovy DSL 动态规则(rule)执行引擎, 流程引擎. 特色 风控系统, 规则引擎, 动态接口配置(低代码)\n\n\n### 2021年8月26号添加\n---\n#### montisan(长沙) - [Github](https://github.com/montisan)\n* :white_check_mark: [极客编辑器](https://www.geekeditor.com)：所见即所得（WYSIWYG）富文本沉浸式深度写作编辑器，它注重效率创作，可多开文档编辑，同时支持Markdown语法输入。它重视写作者内容隐私及数据安全，目前已支持浏览器本地、Github及Gitee仓库文档存储，支持 Github、Gitee 仓库图片资源存储。在线版访问：[https://www.geekeditor.com](https://www.geekeditor.com) 。当前，编辑器除了支持常用内容块外，并支持了代码块、LaTex数学公式、Mermaid图表、Drawio制图，可以一键复制到微信公众号、知乎及掘金等平台发布。此外，编辑器支持了截图粘贴以及本地图片文件拖拽至编辑区任意位置等便捷功能。\n\n### 2021年5月20号添加\n---\n#### beavailable - [Github](https://github.com/beavailable)\n* :white_check_mark: [share](https://github.com/beavailable/share)：分享文件和文本，用这一个工具就够了！\n\n### 2021年4月13号添加\n---\n#### xiejiahe(珠海) - [Github](https://github.com/xjh22222228)\n* :white_check_mark: [Boomb](https://github.com/xjh22222228/boomb)：基于 Github 轻松管理您的存储图库\n\n### 2021年1月2号添加\n---\n#### yanhuihang（广州） - [Gitee](https://gitee.com/yanhuihang/)\n* :white_check_mark: [哔哩哔哩舆论工具](https://gitee.com/yanhuihang/Bilibili)：哔哩哔哩视频网弹幕发送者查看器（本来是加密的，解密了一下）\n\n### 2020年10月24号添加\n---\n#### RiverTwilight(成都) - [Github](https://github.com/RiverTwilight), [博客](https://blog.yungeeker.com)\n* :white_check_mark: [NBlog](https://blog.yungeeker.com)：支持多语言和评论的静态 Markdown 博客系统，无需服务器，响应式 - [更多介绍](https://github.com/RiverTwilight/NBlog)\n\n### 2020年9月23号添加\n---\n#### Strawmanbobi(南京) - [Gitlab](http://strawmanbobi.wicp.net/irext),\n* :white_check_mark: [IRext](https://cc.irext.net)：万能红外遥控解决方案，全球唯一开源万能红外遥控码库+编解码方案（IRext open source organization）\n\n### 2020年9月5号添加\n---\n#### Writeup007 - [Github](https://github.com/Writeup007)\n* :white_check_mark: [Windows 版 tail 命令](https://github.com/Writeup007/windows-tail)：Windows 版 tail 命令，可在 CMD 下直接使用，解决 Windows 日志查看问题。\n\n### 2020年7月15号添加\n---\n#### Elliot(杭州) - [GitHub](https://github.com/elliotreborn)\n* :white_check_mark: [SOCODE.PRO](https://socode.pro/extension/)：在浏览器地址栏中快捷、舒适地搜索多种类型的编程文档。\n\n### 2020年6月30号添加\n---\n#### doho(北京) - [Github](https://github.com/zwh1666258377)\n* :white_check_mark: [gitbook2spa](https://github.com/tigergraph/gitbook2spa)：将 Gitbook 导出的原数据转换成单页面应用的工具，像素级还原。 - [更多介绍](https://github.com/tigergraph/gitbook2spa)\n\n### 2020年4月14号添加\n---\n#### Jezemy(广州) - [Github](https://github.com/Jezemy)\n* :white_check_mark: [视频字幕翻译器](https://github.com/Jezemy/VideoSubScanPlayer)：自动翻译内嵌字幕的视频播放器\n\n### 2020年4月5号添加\n---\n#### Writeup007 - [Github](https://github.com/Writeup007/weibo_Hot_Search)\n* :white_check_mark: [微博热搜爬虫](https://github.com/Writeup007/weibo_Hot_Search)：每天定时爬取微博热搜榜的内容，留下互联网人的记忆。\n\n### 2020年3月4号添加\n---\n#### huifer(杭州) - [Github](https://github.com/huifer)\n* :white_check_mark: [平面算法](https://github.com/huifer/planar_algorithm): 平面几何算法\n\n### 2020年2月29号添加\n---\n#### Captain(深圳) - [Github](https://github.com/timi-liuliang)\n* :white_check_mark: [Echo](https://github.com/timi-liuliang/echo)：新建中的跨平台游戏引擎\n\n### 2020年1月16号添加\n---\n#### SanJin(北京) - [Github](https://github.com/sanjinhub), [博客](https://geek.lc)\n* :white_check_mark: [HFish](https://github.com/hacklcx/HFish)：国内最好用的开源蜜罐框架系统 - [更多介绍](https://github.com/hacklcx/HFish/blob/master/README.md)\n* :white_check_mark: [Hexo-Geek主题](https://github.com/sanjinhub/hexo-theme-geek)：更符合 Geek 精神的极简主题 - [更多介绍](https://github.com/sanjinhub/hexo-theme-geek/blob/master/README.md)\n\n### 2020年1月8号添加\n---\n#### MagicLu(青岛) - [GitHub](https://github.com/MagicLu550),[博客](http://blog.noyark.net)\n- :clock8: [文言文编程语言: WenYan-Lang Java编译器](https://github.com/MagicLu550/wenyan-lang_jvm): 实现了对于文言文编程语言在JVM上运行\n\n### 2020年1月7号添加\n---\n#### Hancel.Lin(深圳) - [GitHub](https://github.com/imlinhanchao), [博客](http://hancel.org/)\n* :white_check_mark: [国家节假日解析爬虫](https://github.com/imlinhanchao/chinese_holiday_spider_module)：从国务院网站解析获取国家节假日公布页面的节假日安排。\n* :white_check_mark: [维基百科全站镜像](https://github.com/imlinhanchao/ngx_proxy_wiki)：通过 Nginx 反向代理制作维基百科全站镜像的配置档\n* :white_check_mark: [GitHub Page 图床](https://www.npmjs.com/package/github-picbed)：借助于 GitHub Page 和 GitHub Api 做图床 - [更多介绍](https://github.com/imlinhanchao/github-picbed)\n* :white_check_mark: [Google 翻译 node 库](https://www.npmjs.com/package/translator-promise)：通过模拟请求实现 Google 翻译功能 - [更多介绍](https://github.com/imlinhanchao/translator-promise)\n* :white_check_mark: [VitePress JS 代码预览插件](https://www.npmjs.com/package/vitepress-script-preview)：VitePress 插件，增加一个可预览 JS 代码执行结果的 markdown 容器。 - [更多介绍](https://imlinhanchao.github.io/vitepress-script-preview/)\n\n### 2019年12月17号添加\n---\n#### Easy - [微博](https://weibo.com/easy), [GitHub](https://github.com/easychen)\n* :white_check_mark: [Server酱](http://sc.ftqq.com)：接口超级简单的微信模板消息推送服务\n\n### 2019年12月5号添加\n---\n#### inspurer - [Github](https://github.com/inspurer)\n* :white_check_mark: [刷脸考勤系统](https://github.com/inspurer/WorkAttendanceSystem)：基于 dlib 和 OpenCV 的 PC 端刷脸考勤系统\n\n\n#### Jiang-Xuan(Hangzhou) - [Github](https://github.com/Jiang-Xuan)\n* :white_check_mark: [tuchuang.space](https://github.com/Jiang-Xuan/tuchuang.space)：测试驱动的开源图床系统, 免费存储图片\n\n### 2019年11月21号添加\n---\n#### 不怕天黑(杭州) - [Github](https://github.com/liujingxing), [博客](https://juejin.im/user/590af762a22b9d0057a6eaca/posts)\n* :white_check_mark: [RxHttp](https://github.com/liujingxing/RxHttp)：一条链发送任意请求，让你眼前一亮的 Http 请求框架\n* :white_check_mark: [RxLife](https://github.com/liujingxing/RxLife)：一行代码解决 RxJava 内存泄漏，一款轻量级别的 RxJava 生命周期管理库\n\n### 2019年11月4号添加\n---\n#### 何辉(深圳) - [Github](https://github.com/qq475742653)\n* :white_check_mark: [皕杰报表](http://www.headset.xin/BIOSREP/)：做后台 + ECharts 做前端集成演示：所有数据皆出后台报表获取，构造成 ECharts 所需要的 JSON 数组（一维数据、二维数据、三维数据等），传给前端的 ECharts，支持大屏显示、实时刷新。展示了24类，上百张 ECharts 报表\n\n### 2019年10月13号添加\n---\n#### panjf2000(潘少) - [Github](https://github.com/panjf2000), [博客](https://taohuawu.club/)\n* :white_check_mark: [gnet](https://github.com/panjf2000/gnet)：高性能且轻量级的 Go 网络框架\n* :white_check_mark: [ants](https://github.com/panjf2000/ants)：高性能的 Go 协程池，已在字节跳动的线上使用\n\n### 2019年9月15号添加\n---\n#### magiclu(青岛) - [Github](https://github.com/MagicLu550),[博客](http://blog.noyark.net)\n* :white_check_mark: [plugin4j](https://github.com/MagicLu550/plugin4j)：简易的统一规范插件开发框架\n* :white_check_mark: [JSmod2](https://github.com/jsmod2-java-c/JSmod2-Core)：基于游戏 SCP: 秘密实验室创作的Java插件开发框架\n* :white_check_mark: [edclass4j](https://github.com/MagicLu550/edclass4j)：基于 AES 加密的字节码加密解密API和远程授权控制程序\n* :white_check_mark: [oaml](https://github.com/noyark-system/noyark_oaml_java)：oaml 配置文件规范解析器\n\n### 2019年7月7号添加\n---\n#### andyesfly - [Github](https://github.com/andyesfly)\n* :clock8: [dipiper](http://dipiper.tech): 基于 Node.js 的财经数据接口包，为量化投资提供数据来源，满足金融量化分析师和学习数据分析的人在数据获取方面的需求\n\n### 2019年7月5号添加\n---\n#### ddzy(东莞) - [Github](https://github.com/ddzy)\n* :white_check_mark: [fe-necessary-book](https://github.com/ddzy/fe-necessary-book)：为前端开发者提供的`优质书籍`和程序员们的`码农长寿指南`(***pdf***)\n\n### 2019年6月15号添加\n---\n#### ICKelin(深圳) - [Github](https://github.com/ICKelin)\n* :white_check_mark: [Notr](http://www.notr.tech)：独立开发的内网穿透服务\n\n#### Akkariin - [Github](https://github.com/kasuganosoras), [博客](https://blog.natfrp.org/)\n- :white_check_mark: [Cloudflare Workers Blog](https://blog.natfrp.org/)：利用 Cloudflare workers 边缘计算服务和 Github Pages 实现的无服务器博客系统 - [更多介绍](https://github.com/kasuganosoras/cloudflare-worker-blog)\n- :white_check_mark: [Sakura Frp](https://www.natfrp.org/)：基于 Frp 的免费内网穿透平台\n- :white_check_mark: [Pigeon](https://github.com/kasuganosoras/Pigeon)：轻量化的留言板 / 记事本 / 社交系统 / 博客\n\n### 2019年5月21号添加\n---\n#### ChineseBQB - [Github](https://github.com/zhaoolee/ChineseBQB)\n- :white_check_mark: [ChineseBQB](https://zhaoolee.github.io/ChineseBQB/)：中国人聊天表情包大集合, 收录表情包的仓库, 所有收录的表情包均可在线查看下载! - [更多介绍](https://github.com/zhaoolee/ChineseBQB/blob/master/README.md)\n\n---\n#### CloudOpenDevOps - [Github](https://github.com/opendevops-cn/opendevops)\n- :white_check_mark: [opendevops](http://www.opendevops.cn)：CODO 是为用户提供企业多混合云、自动化运维、完全开源的云管理平台 - [更多介绍](https://github.com/opendevops-cn/opendevops)\n\n### 2019年4月20号添加\n---\n#### xiaohulu - [GitHub](https://github.com/blocklang)\n* :white_check_mark: [BlockLang-Installer](https://github.com/blocklang/blocklang-installer)：自动化部署工具，专用于部署 Spring boot 项目\n\n### 2019年4月19号添加\n---\n#### xianfeng92 - [Github](https://github.com/xianfeng92)\n* :white_check_mark: [Love-Ethereum](https://github.com/xianfeng92/Love-Ethereum)：关于区块链技术的学习项目 - [更多介绍](https://github.com/xianfeng92/Love-Ethereum/blob/master/version/Frontier.md)\n\n### 2019年4月15号添加\n---\n#### yutiansut - [Github](https://github.com/yutiansut)\n* :white_check_mark: [QUANTAXIS](https://github.com/quantaxis/quantaxis)：股票/期货/多市场的闭环解决方案\n\n#### zhanghuanchong - [Github](https://github.com/zhanghuanchong)\n* :white_check_mark: [icon-workshop](https://github.com/zhanghuanchong/icon-workshop)：移动应用图标生成工具，一键生成所有尺寸的应用图标\n\n### 2019年4月12号添加\n---\n#### star7th(深圳) - [Github](https://github.com/star7th)\n* :white_check_mark: [ShowDoc](https://www.showdoc.cc/)：非常适合 IT 团队的在线API文档、技术文档工具 - [更多介绍](https://github.com/star7th/showdoc)\n\n### 2019年4月11号添加\n---\n#### Wang Shidong - [Github](https://github.com/wsdjeg)\n* :white_check_mark: [SpaceVim](https://spacevim.org/)：模块化、支持多种编程语言的 Vim 开发环境 - [更多介绍](https://github.com/SpaceVim/SpaceVim)\n\n#### Aquanlerou - [Github](https://github.com/aquanlerou), [博客](https://blog.eunji.cn)\n* :white_check_mark: [WeHalo](https://github.com/aquanlerou/WeHalo)：WeHalo 简约风 的微信小程序版博客 :sparkles:\n\n#### Qeesung - [Github](https://github.com/qeesung), [微博](https://www.weibo.com/qeesuny)\n* :white_check_mark: [Image2ASCII](https://github.com/qeesung/image2ascii.git) : 图片转化为 ASCII 码的命令行工具\n* :white_check_mark: [ASCIIPlayer](https://github.com/qeesung/asciiplayer) : 图片，GIF，视屏 ASCII 转化播放命令行工具\n\n#### 袁慠棱 - [Github](https://github.com/alengYuan), [博客](http://slothindie.org/)\n* :x: [LemonTea](http://lemontea.slothindie.org/)：极简且特别的静态网站生成器 - [更多介绍](http://lemontea.slothindie.org/book/index.html)\n"
  },
  {
    "path": "README.md",
    "content": "## 中国独立开发者项目列表\n聚合所有中国独立开发者的项目\n\n### 子版面\n- [程序员版面](./README-Programmer-Edition.md)：使用需要命令行或写代码\n- [游戏版面](./README-Game.md)：都是游戏\n\n备注：您当前查看的是主版面，收录的产品是打开即用，和子版面中的产品类型不同。\n\n**1. 为什么有这个表**\n作为开发者其实比较好奇其他人在做什么业余项目（不管目的是做到盈利/玩票/试试看）\n所以特意建了这个库。欢迎各位开发者把自己的项目加进来~ 发 Pull Request 或 Issue 即可 <br/>\n（入选标准：必须是网站或App，不能是开发者工具或论坛型网站）\n\n**2. 项目有 3 种状态**\n\n| 开发中 | 已上线 | 已关闭或缺乏维护 |\n|--------|--------|--------|\n| :clock8: | :white_check_mark: | :x: |\n\n## 3. 项目列表\n\n### 2026 年 3 月 18 号添加\n\n#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)\n* :white_check_mark: [socialplugarchive.com](https://www.socialplugarchive.com)：全球首个针对 SocialPlug 的欺诈证据存档库。通过 SEO 和结构化数据，公开披露其虚假交付、退款拖延及欺诈模式，致力于保护开发者与营销人员免受数字资产诈骗。\n\n### 2026 年 3 月 17 号添加\n\n#### lkunxyz - [Github](https://github.com/lkunxyz)\n* :white_check_mark: [Extension聚合平台](https://aiextension.ai)：AI相关的extension聚合平台，免费无限提交\n\n#### damotiansheng - [Github](https://github.com/damotiansheng)\n* :white_check_mark: [Photo Animate AI](https://photoanimate.org/)：利用人工智能动画技术，将静态照片转化为动态、逼真的视频\n\n#### Moresl - [Github](https://github.com/Moresl)\n* :white_check_mark: [ImageMinify](https://github.com/Moresl/ImageMinify)：轻量级图片批量压缩工具，支持 JPEG/PNG/WebP，基于 C# WPF 开发，免费开源\n\n\n### 2026 年 3 月 16 号添加\n\n#### qqhaosao(广州)\n* :white_check_mark: [mpeg to mp3](https://mpegtomp3.online/)：免费将.mpeg/.mpg格式的视频文件转换为.mp3格式的文件，无需注册，无需登录，本地执行，注重隐私保护。\n\n### 2026 年 3 月 15 号添加\n\n#### Eric（浙江） - [Github](https://github.com/erickkkyt)\n* :white_check_mark: [WMHub](https://wmhub.io/)：一体化 AI 创作工作空间，支持视频、图像与 3D 生成，帮助团队更快产出高质量媒体资产。\n\n#### 阿健(杭州) - [Github](https://github.com/hugh2nd), [博客](https://parseword.net/blog)\n* :white_check_mark: [Parseword](https://parseword.net)：聚合多种经典每日单词谜题\n\n#### damotiansheng(广州) - [Github](https://github.com/damotiansheng)\n* :white_check_mark: [Deep Nostalgia AI](https://deep-nostalgia-ai.com/)：借助人工智能照片动画，将家庭照片转变为引人入胜的动画视频，为珍贵的回忆注入活力的网站\n\n#### newbe36524（福建） - [Github](https://github.com/newbe36524)\n* :white_check_mark: [Hagicode](https://hagicode.com/)：用 OpenSpec 工作流、多 Agent 多实例并行、Hero Dungeon 游戏化重新定义 AI 编码体验\n\n#### 我是欧阳\n* :white_check_mark: [地理占星工具](https://astrocarto.net)：用户输入出生日期、出生时间和出生地点后，可以直接生成一张全球地理占星图，把不同行星的 AS / DS / MC / IC 线投射到世界地图上，用来比较哪些城市更适合居住、工作、旅行、短住或做人生阶段选择。我做这个项目，主要是因为现有同类工具对普通用户不太友好：要么界面比较老，要么只给一张图、不解释结果，第一次接触的人很难真正用起来。所以这个版本更强调“可直接使用”和“降低理解门槛”\n\n### 2026 年 3 月 14 号添加\n#### maowei8888 - [Github](https://github.com/maowei8888)\n* :white_check_mark: [BookletAI](https://bookletai.org/)：面向普通用户的小册子 AI 工具，可自动调研、写作并生成排版好的 booklet 页面。\n\n### 2026 年 3 月 13 号添加\n\n#### asui(泉州) - [Github](https://github.com/xingxingc)\n* :white_check_mark: [看图识梗](https://github.com/xingxingc/stray_avatar/raw/main/assets/qrcode_ktsg.jpg)：看图猜词语小程序 - [更多介绍](https://developers.weixin.qq.com/community/develop/doc/000026ee8ecd381fc6c45be8c6b00c)\n\n#### Picaro\n* :white_check_mark: [Image to Video AI](https://imagetovideoai.pro/)：将静态图片生成视频的 AI 工具\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [Markdown to PDF Bot](https://mdpdf.xyz)：可以把含表格/公式的 Markdown 消息渲染成 PDF 的 Telegram 电报机器人，对于在 Telegram 里玩OpenClaw的朋友会非常有用。\n\n#### hwlvipone - [Github](https://github.com/hwlvipone)\n* :white_check_mark: [Kling Motion Control](https://kling-motion-control.com/)：AI Motion Transfer with Kling 3.0\n\n#### my19940202(上海) - [Github](https://github.com/my19940202)\n* :white_check_mark: [macLaunchpads macOS 26 的最佳启动台替代品](https://maclaunchpad.aizeten.me/)：macOS 26启动台改版不习惯？那就直接访问 maclaunchpad.aizeten.me 回到最初的感觉\n\n\n### 2026 年 3 月 12 号添加\n\n#### zhangxiaoyuan2025 - [Github](https://github.com/zhangxiaoyuan2025)\n* :white_check_mark: [OutfitSwap Studio](https://outfitswapstudio.com/)：AI 换装 / 虚拟试衣工具，支持 AI Clothes Changer、Virtual Try-On 和 Outfit Swap，上传照片即可生成换装效果\n\n#### bytevirts - [Github](https://github.com/bytevirts)\n* :white_check_mark: [Vibe Video](https://vibevideo.app)：面向普通用户的 AI 视频生成网站，支持文生视频、图生视频、参考图生视频和电影化镜头控制，适合创作者和营销团队快速产出视频\n\n### 2026 年 3 月 11 号添加\n\n#### dagouzhi(成都) - [Github](https://github.com/htyf-mp-community), [官网](https://mp.dagouzhi.com/)\n* :white_check_mark: [红糖云服](https://apps.apple.com/us/app/%E7%BA%A2%E7%B3%96%E4%BA%91%E6%9C%8D/id1544048353)：自由开放的小程序容器 App，可动态加载小程序和小游戏，实现一套代码发布即生效\n\n#### 金川(上海) - [Github](https://github.com/mrchen1225)\n* :white_check_mark: [AI LipSync](https://lipsyncx.com)：对口型视频生成工具，支持长视频翻译\n\n### 2026 年 3 月 9 号添加\n\n#### maowei8888 - [Github](https://github.com/maowei8888)\n* :white_check_mark: [BookletAI](https://bookletai.org/)：AI 生成小册子（免费）可自动研究网络、配图并生成任何主题的综合在线书籍\n\n#### LeiDell(广安) - [Github](https://github.com/leidelltech), [博客](https://blog.leidell.cn)\n* :white_check_mark: [表极客手表应用商店](https://watchgeek.cn)：汇聚智能手表应用资源，打造一站式智能手表应用资源平台，提供应用下载、教程分享和技术支持\n\n#### jankarong - [Github](https://github.com/jankarong)\n* :white_check_mark: [FillPDFfromExcel](https://fillpdffromexcel.com/)：将 Excel 数据填入 PDF 的工具\n\n### 2026 年 3 月 7 号添加\n#### rongseng716-debug - [Github](https://github.com/rongseng716-debug)\n* :white_check_mark: [kling](https://www.kling4.co?utm_source=github&utm_medium=description&utm_campaign=kling4)：AI 生成视频，支持多种 kling 模型\n\n#### yzqzy - [Github](https://github.com/yzqzy)\n* :white_check_mark: [交易信标 | TradeSignal](https://tradersignal.org/)：A 股投资分析桌面工具，价值为基、趋势为策。盘后复盘看板、智能筛选、个股深度分析、交易计划与组合管理；集成 AI 股票分析（多模板多数据源），支持 14 天免费体验 - [更多介绍](https://tradersignal.org/signal-client)\n\n#### Gingiris - [Github](https://github.com/Gingiris), [博客](https://gingiris.com)\n* :white_check_mark: [AI 产品全球发布行动指南](https://github.com/Gingiris/gingiris-launch)：基于 AFFiNE 等现象级产品实战复盘，含 Product Hunt 发布 SOP、KOL 合作、UGC 增长策略\n* :white_check_mark: [B2B 产品增长指南](https://github.com/Gingiris/gingiris-b2b-growth)：从 PMF 验证到生态化增长的完整操作手册，整合 HeyGen、Deel、Vercel 等标杆案例\n* :white_check_mark: [开源项目发布整合营销手册](https://github.com/Gingiris/gingiris-opensource)：GitHub Star 增长策略、KOL 合作清单、Reddit 运营与海外群组分发完整 SOP\n\n### 2026 年 3 月 6 号添加\n\n#### reake (上海)\n* :white_check_mark: [MakeTimestamp](https://maketimestamp.com)：时间戳转换/计算工具箱（48+），浏览器本地处理，支持秒/毫秒/微秒/纳秒，UTC/本地切换。\n\n#### cf12436(深圳)\n* :white_check_mark: [Videodance](https://videodance.cc/)：AI 视频生成器，基于 Seedance 2.0，提供原生多镜头叙事、音视频同步和 2K 影院级画质输出。无需任何剪辑经验，即可创作出人物形象一致、对话完美同步的专业电影级视频。\n\n#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)\n* :white_check_mark: [twittetize](https://twittetize.com/)：AI 驱动的 X（Twitter）自动化增长平台，将监控竞争对手、发现趋势、AI 生成内容、规划发布和用户触达整合在一个平台中，帮助用户实现可预测的增长。\n\n#### ShaodongDev - [Github](https://github.com/ShaodongDev)\n* :white_check_mark: [SaaSTool.site](https://saastool.site/)：SaaS 工具导航站和收录平台，配备 AI 自动填写功能，帮助初创 SaaS 增加 DR 和曝光\n\n### 2026 年 3 月 4 号添加\n\n#### jankarong - [Github](https://github.com/jankarong)\n* :white_check_mark: [AITrendingPrompt](https://aitrendingprompt.com/)：精选 AI 提示库，为创作者和营销人员提供热门、实用的 AI 提示\n\n#### 刀刀 - [Github](https://github.com/daodao97)\n* :white_check_mark: [EmojiFinder.cc](https://emojifinder.cc/)：Emoji 搜索复制工具，收录 1780+ 表情，支持 20 种语言，一键复制\n\n#### HaydenBi - [博客](https://haydenbi.com)\n* :white_check_mark: [Pixalice](https://pixalice.com)：AI 生图与视频生成平台，内置多个图片模板，一键生成，支持 Nano Banana、SeeDream、Sora2 等多种模型\n\n### 2026 年 3 月 3 号添加\n\n#### 袁慠棱 - [Github](https://github.com/alengYuan)\n* :white_check_mark: [Rhythm (聆声)](https://aleng-yuan.itch.io/slothindie-rhythm)：适合在 Windows 上进行后台播放的简易本地音乐播放器\n\n### 2026 年 3 月 2 号添加\n#### 我是欧阳 - [Github](https://github.com/iamouyang21)\n* :white_check_mark: [Nano Banana 2](https://nanobanana-2.xyz)：AI 生图工具，Nano Banana 2 是面向设计师、运营和内容创作者的在线 AI 生图工具，支持「预设工坊 + 自由创作」双模式，内置多种风格模板与 50+ 涂鸦字体，输入文字即可快速生成高质量图片；同时支持多语言文字渲染、参数可调、浏览器即开即用。最新上线的批量生图功能可一次生成多张或多版本图片，适合海报、电商素材和社媒内容的规模化生产，显著提升出图效率\n\n### 2026 年 3 月 1 号添加\n#### hanshs474 - [Github](https://github.com/hanshs474)\n* :white_check_mark: [nano banana2](https://www.ainanobanana2.pro)：AI 图片生成工具，支持 Nano Banana 系列模型\n\n#### mundane - [Github](https://github.com/mundane799699)\n* :white_check_mark: [aihugvideo.app](https://aihugvideo.app)：AI Hug 是最好的 AI 拥抱视频生成网站🤗，可以在几分钟内轻松构建您的 AI 拥抱视频\n\n#### sonicker(上海) - [GitHub](https://github.com/cursorzephyr002-lgtm)\n* :white_check_mark: [Sonicker](https://www.sonicker.com)：AI 语音克隆平台，3 秒克隆任何声音，保留情感和口音。支持中英日韩等 10 种语言的语音合成，提供 50+ 预设声音库和 AI 声音设计功能\n\n#### kristoff\n* :white_check_mark: [Nano Banana AI](https://nano-banana.love/)：AI 生图工具\n\n#### ZhuccIvan - [Github](https://github.com/ZhuccIvan)\n* :white_check_mark: [ShopAI](https://vipvan.cc/shop-ai)：生成电商详情图，简化商家操作复杂度\n\n### 2026 年 2 月 28 号添加\n\n#### azt1112 - [Github](https://github.com/azt1112)\n* :white_check_mark: [Seedance 2 Pro](https://seedance2pro.pro/)：多模态 AI 视频生成平台。支持文本+多张图片+视频+音频参考同时输入，实现角色一致性、多镜头叙事、音频同步动作、精准镜头控制。几分钟生成商业级短视频，适合营销、电商、社交媒体、品牌故事、预可视化等高频内容创作需求。比传统文生视频更可控、更接近导演级表达\n\n#### yuhoayu-arch - [Github](https://github.com/yuhoayu-arch)\n* :white_check_mark: [Speakoala](https://speakoala.com/zh)：集“全格式兼容、超自然人声、沉浸式听感”于一体的智能语音助手，能将网页、邮件及 PDF/Word 等本地文档一键转化为媲美真人的多国语言朗读，配合词级高亮同步、背景白噪音及最高 4 倍速调节，解放用户双眼，让深度阅读在通勤、家务或健身的碎片化场景中焕发新生\n\n#### Cyan (北京) - [Github](https://github.com/ShaodongDev)\n* :white_check_mark: [DingTou APP](https://dingtouapp.org/)：美股/ A 股基金定投计算器，个人投资理财工具，给大家资金出海提供一条路径。主要功能是回测美股和 A 股基金的投资，以及可视化收益，用于对比和复盘决策 - [更多介绍](https://dingtouapp.org/about)\n\n### 2026 年 2 月 27 号添加\n\n#### emptykid(北京) - [GitHub](https://github.com/emptykid)\n* :white_check_mark: [打字鸭](https://www.daziya.com)：免费中文打字练习在线平台，提供3000+的盲打课程，科学的打字课程设计，拼音输入法、汉语拼音、诗词歌赋、经典名著、背英文单词、知识百科，练习打字同时收获更多，结合趣味化教学体验。\n\n#### AlvyVV - [GitHub](https://github.com/AlvyVV)\n* :white_check_mark: [MemoTune](https://memotune.com)：AI 音乐生成工具，支持文字转歌曲、歌词转歌曲，并提供 AI 人声生成、声音模型训练、AI Cover 等功能。 用 AI 把你的文字或歌词变成完整的歌曲，免费开始，无需信用卡。支持 10+ 音乐风格（流行、说唱、R&B、民谣、摇滚、电子等）。支持中文、英文、日语、韩语等 10+ 语言。可训练专属 AI 声音模型。\n\n#### sonicker(上海) - [GitHub](https://github.com/cursorzephyr002-lgtm)\n* :white_check_mark: [Sonicker](https://www.sonicker.com)：AI 语音克隆平台，3 秒克隆任何声音，完美保留情感和口音。支持中英日韩等 10 种语言的语音合成，提供 50+ 预设声音库和 AI 声音设计功能，免费开始使用。\n\n### 2026 年 2 月 26 号添加\n\n#### Cyan (北京) - [Github](https://github.com/ShaodongDev)\n* :white_check_mark: [UN招聘网](https://unzhaopin.com/)：🇺🇳 联合国招聘信息聚合网站，给大家**出海**多提供一条路径。我改进了官方的 UI 、做了岗位职称等翻译、嵌入了 AI 驱动的 JD 详情页、支持中英双语，方便中文母语者申请联合国相关的工作\n\n#### lkunxyz - [Github](https://github.com/lkunxyz)\n* :white_check_mark: [Seadance 2.0 AI](https://seedance2.so)：由 Seedance 2.0 驱动的创作平台，整合全球顶尖模型，通过统一积分系统为创作者、营销人员和机构提供影院级 1080p 视频制作（含同步音频）、导演级逐帧剪辑和高保真图像生成服务。\n\n#### sherlockouo(成都)\n*  :white_check_mark: [LeafResume](https://leaf-resume.com/)：LeafResume 极简·高效·性价比之王，专注于简历编写导出，考研复试、校招、社招跳槽找工作必备！Leaf-Resume 专注极简高效，内置 AI 深度润色与分享、评论Review 功能，助你精准击中 HR 痛点。免费版支持无水印导出，随时随地开启专业排版。🔥 宠粉福利：仅需 9.9 元即可上手 Pro 全功能，解锁 AI 深度优化，这一波性价比真绝了！\n\n### 2026 年 2 月 25 号添加\n\n#### elng12(柳州)\n*  :white_check_mark: [Pinpoint Answer Today](https://pinpointanswertoday.app/)：Pinpoint Answer Today 是你每日快速了解 LinkedIn Pinpoint 的指南。我们会发布经过核实的今日 Pinpoint 答案，并提供简短清晰的解析，让你几秒钟就能拿到答案、保持连胜——就算今天的 Pinpoint 有点难也不怕\n\n#### Reake(上海)\n* :white_check_mark: [SVGView](https://svgview.com/?utm_source=github)：在线 SVG 查看、压缩、格式转换工具，全程浏览器本地处理，不上传文件  \n\n#### Cyan(北京) - [Github](https://github.com/ShaodongDev)\n* :white_check_mark: [NewTool.site](https://newtool.site/)：AI 驱动的工具导航站和收录平台，帮助初创工具增加 DR、被看到 - [更多介绍](https://newtool.site/about)\n\n### 2026 年 2 月 24 号添加\n#### mickey(杭州) - [github](https://github.com/mymickey/kidblocker)\n* :white_check_mark: [KidBlocker](https://kidblocker.com)：我家孩子看 YouTube 的时间太长了，所以我想找个浏览器扩展（browser extension）来屏蔽它。在 Chrome 网上应用店没找到满意的，我就自己做了一个——在这里分享出来，看看能不能帮到其他人。\n\n### 2026 年 2 月 23 号添加\n#### jjleng(美国) - [Github](https://github.com/jjleng)\n* :white_check_mark: [Gliss](https://gliss.pro)：AI Music Agent，用于歌曲生成、翻唱、MIDI 编辑、母带处理与封面艺术；可生成免版税人声与伴奏，并支持精确分轨/元素提取。\n\n#### my19940202(上海) - [Github](https://github.com/my19940202)\n* :white_check_mark: [Download Pilot - 自动整理下载 + 智能命名插件](https://www.downloadpilot.top/zh)：Chrome 扩展：按文件类型自动把下载整理进文件夹，并支持按照网页上下文 乱码/哈希文件名变成可读名称，让下载夹整洁、好找、可搜索\n\n\n### 2026 年 2 月 21 号添加\n\n#### Remember(HangZhou) - [Github](https://github.com/wuqinqiang)\n* :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 视频\n\n### 2026 年 2 月 20 号添加\n\n#### HuzefaUsama25 - [Github](https://github.com/HuzefaUsama25)\n* :x: [FaceFinder](https://facefinder.id/)：AI 人脸搜索和反向图像搜索工具\n\n#### nanobanana-co - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [Seadance AI](https://seadanceai.net)：视频与图像生成平台（由 Seedance 2.0 驱动），整合全球领先 AI 模型到统一工作流程，通过专为创作者、营销人员和机构设计的单一积分系统，可生成影院级 1080p 视频（自带同步音频），用导演级剪辑逐帧优化画面，并创作高保真图像。\n\n### 2026 年 2 月 19 号添加\n\n#### BC - [Github](https://github.com/cwingho)\n* :white_check_mark: [粵語拼音網](https://cantonesepinyin.com/)：專業粵語拼音轉換工具，即時將中文轉換為標準粵拼\n\n#### yaowei - [GitHub](https://github.com/lumian2015)\n* :white_check_mark: [MotionSeed](https://seedance-2.video)：AI 视频生成平台，聚合 Sora 2、Veo 3.1、Seedance 2.0 等多个主流 AI 视频模型，支持文字生成视频、图片生成视频，无需分别注册各平台账号，注册即送免费额度。\n\n#### iamouyang21\n* :white_check_mark: [Graffiti Generator](https://graffitigenerator.io)：生成涂鸦艺术，旨在降低涂鸦创作的门槛。它结合了 AI 绘画生成与传统的字体设计功能，让用户无需任何绘画基础，也能在几秒钟内创造出专业级的涂鸦作品。\n\n### 2026 年 2 月 17 号添加\n\n#### Leochens - [Github](https://github.com/Leochens)\n* :white_check_mark: [FloatMemo 状态栏小本本](https://apps.apple.com/cn/app/FloatMemo/id6749236800)：沉浸式速记与剪贴板管理工具（面向 Mac 平台），通过“不切屏”交互解决多任务场景下的注意力切换成本。支持全局悬浮速记、图文混排、快捷键调出剪贴板历史并一键粘贴或保存至笔记。\n\n#### nanobanana-co - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [NovaImage](https://novaimage.ai)：AI 图像与视频生成平台（以 Nano Banana Pro 为核心创意引擎），整合视觉设计与影视级视频制作 AI 模型于统一工作空间\n\n### 2026 年 2 月 16 号添加\n\n#### hanshs474 - [Github](https://github.com/hanshs474)\n* :white_check_mark: [Seedance 2.0](https://www.seedance2.today)：创作电影级 AI 视频，支持多个模型的图片视频生成网站\n\n### 2026 年 2 月 15 号添加\n\n#### Lucian(Guangzhou) - [Github](https://github.com/lucianLY)\n* :white_check_mark: [steamvai](https://steamvai.com/)：文案转视频，根据文案内容生产处优质的视频资源，叙事镜头、1080P 视频音频视频效果都不错\n\n#### sagasu(上海) - [Github](https://github.com/s87343472)\n* :white_check_mark: [OmniConvert](https://tools.sagasu.art/?utm_source=github&utm_medium=awesome-list&utm_campaign=chinese-independent-developer)：文件格式和单位转换工具，浏览器本地处理，支持94种文件格式互转与345种单位换算，8种语言\n\n### 2026 年 2 月 14 号添加\n\n#### Jack - [Github](https://github.com/ThinkerJack)\n* :white_check_mark: [GroAsk](https://groask.com/)：macOS 菜单栏 AI 启动器，⌥Space 直达多个 AI（快捷键可自定义）\n\n### 2026 年 2 月 13 号添加\n\n#### Lucian(广州) - [Github](https://github.com/lucianLY)\n* :white_check_mark: [steamvai](https://steamvai.com/)：专注文案转视频，根据文案内容生产处优质的视频资源，叙事镜头、1080P视频音频视频效果都不错。\n\n#### Yuzu-Peel(上海) - [Github](https://github.com/Yuzu-Peel)\n* :white_check_mark: [CookLLM](https://cookllm.com/)：带你从头训练一个 LLM\n\n### 2026 年 2 月 12 号添加\n####  托马(杭州)\n* :white_check_mark: [Seedance 2.0 Video](https://seedance2.video)：基于 Seedance 2.0 的 AI 视频生成和编辑平台\n\n### 2026 年 2 月 10 号添加\n#### Toolina(成都)\n* :white_check_mark: [ImageDescriber](https://imagedescriber.dev/?utm_source=github)：使用 AI 图像描述工具在几秒钟内描述图像内容。生成描述、提示词和 Alt 文本。免费试用——无需登录。\n\n### 2026 年 2 月 9 号添加\n\n#### yoga666996 - [Github](https://github.com/yoga666996)\n* :white_check_mark: [Seedance 2.0](https://www.seedance2-video.com)：创作电影级 AI 视频，Seedance 2.0 是字节跳动推出的革命性 AI 视频生成器（常见拼写 seeddance 2.0），支持多镜头叙事、1080p 电影级画质与音画同步\n\n#### waiwaixzz - [Github](https://github.com/waiwaixzz)\n* :white_check_mark: [visionchat.app](https://visionchat.app/)：聊天辅助器，聊天时将对话文本转换成动态的表情和气泡，让聊天更精彩！\n\n#### JohnsonZou(武汉) - [Github](https://github.com/coodersio)\n* :x: [Print PDF Tool](https://print-for-figma.com)：Figma 打印插件，Figma 中导出的PDF本身不适合印刷场景，色彩空间是RGB的，这个工具主要是导出能够直接用于印刷CMYK颜色格式的PDF - [更多介绍](https://print-for-figma.com/features/pdf-print)\n\n### 2026 年 2 月 8 号添加\n\n#### JohnsonZou(武汉)\n* :white_check_mark: [Storyship](https://storyship.app/)：将屏幕录像转为专业演示视频\n* :x: [Video watermark remover](https://videowatermarkremover.co/)：视频水印移除工具\n\n#### hwlvipone - [Github](https://github.com/hwlvipone)\n* :white_check_mark: [Create a Caricature of Me](http://create-a-caricature-of-me.com/)：上传图片，生成GPT风格动漫头像\n\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n* :white_check_mark: [seedance2.0](https://seedance2.so)：seedance 2.0 AI 视频生成工具\n * 参考图像可精准还原画面构图、角色细节\n * 参考视频支持镜头语言、复杂的动作节奏、创意特效的复刻\n * 视频支持平滑延长与衔接，可按用户提示生成连续镜头，不止生成，还能“接着拍”\n * 编辑能力同步增强，支持对已有视频进行角色更替、删减、增加\n\n\n\n### 2026 年 2 月 7 号添加\n\n#### 我是欧阳 - [Github](https://github.com/iamouyang21)\n* :white_check_mark: [OpenClaw Skills](https://openclawskills.co/)：OpenClaw 官方注册表目前托管了 3000+ 个社区构建的智能体技能（Skills），但内容较为杂乱。OpenClaw Skills 是一个经过精选和分类的第三方目录，旨在为开发者提供更干净、高效的检索体验。基于数据清洗从原始注册表中保留了 1705+ 个技能，主要特点包括：精选收录：剔除了加密货币/Web3/DeFi 内容、批量生成的垃圾条目以及重复项。安全筛选：尽可能过滤了涉及滥用、欺诈等潜在有害的技能（我们仍建议安装前审查代码）。专注质量：移除了非英语描述的条目，确保信息的可用性。对于正在寻找 OpenClaw 技能的开发者来说，这里是一个更易于发现和比较工具的入口。\n\n#### xphoenix(山西) - [Github](https://github.com/hell0w0rld-litx)\n* :x: [HEIC转JPG](http://www.heic2img.top)：注重隐私的 HEIC 转换器。将 iPhone 照片转换为 JPG 格式。所有处理都在浏览器本地进行\n\n### 2026 年 2 月 5 号添加\n\n#### gellmoonly - [Twitter](https://x.com/gell_moon)\n* :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)\n\n#### xphoenix(山西) - [Github](https://github.com/hell0w0rld-litx)\n* :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）\n\n#### 韩数 - [Github](https://github.com/hanshuaikang)\n* :white_check_mark: [Owl 猫头鹰](https://owl.hanshutx.com/)：小红书公众号在线敏感词检测工具。我做了半年自媒体之后才发现需要规避平台敏感词，但是之前用的工具停服了，市面上其他的需要登录或者关注他们的公众号才可以使用，于是我 vibe coding 了一个敏感词检测工具，词库是根据网上找的，精简下来有 6 万多个。用了 cloudflare 的开发者穷鬼套餐，所以每人每天限制 10 次，主要是防止第三方调接口把额度耗完大家都没得用，应该对于大多数创作者都是足够使用的了\n\n#### wang1309 - [Github](https://github.com/wang1309)\n* :white_check_mark: [fluxchat](https://fluxchat.org/)：一站式 AI 功能聚合网站，包含 AI Image、AI Music、AI Video、AI chatbot 等功能\n\n#### FrankLiBao - [Github](https://github.com/FrankLiBao)\n* :white_check_mark: [AI人生系统](https://life-system-lyart.vercel.app)：受网文\"系统流\"启发的 AI 游戏化个人成长平台，AI 自动派任务、经验值等级体系、六维属性雷达图 - [更多介绍](https://github.com/FrankLiBao/life-system)\n\n\n### 2026 年 2 月 3 号添加\n\n#### WRCoding - [Github](https://github.com/WRCoding)\n* :white_check_mark: [NNG](https://nicknamegeneratorforgames.top/)：输入想法，AI 生成各种类型昵称\n\n### 2026 年 2 月 2 号添加\n\n#### Ricky Lee(深圳) \n* :white_check_mark: [AppIconKitchen](https://www.appiconkitchen.com/?utm_source=github)：最好用的免费 AI 应用图标生成器，专为开发者设计。一键导出 iOS、Android（支持自适应图标）和 Web/PWA 全平台资源，完美符合 App Store 和 Google Play 规范。\n\n#### wangerblog - [Github](https://github.com/wangerblog)\n* :white_check_mark: [家电耗电量计算器](https://www.energycalculator.online/)：帮助用户分析家庭电器耗电情况，并使用 AI 给出省电建议\n\n### 2026 年 1 月 30 号添加\n\n#### Ivanvolt(武汉) - [博客](https://ivanvolt.com)\n* :white_check_mark: [US Address Generator](https://usaddressgenerator.net)：美国随机地址生成工具，支持一键生成包含街道、城市、州和邮编的真实格式地址，适合开发者进行系统测试或跨境业务模拟注册。\n#### Mickey - [Github](https://github.com/mymickey)\n* :white_check_mark: [TakeScreen](https://takescreen.com/)：在浏览器中编辑各大平台的聊天软件的 App 聊天截图,如 WhatsApp, Telegram, Instagram 等等,并导出成高清截图\n\n#### Ivanvolt(武汉) - [博客](https://ivanvolt.com)\n* :white_check_mark: [US Address Generator](https://usaddressgenerator.net)：美国随机地址生成工具，支持一键生成包含街道、城市、州和邮编的真实格式地址，非常适合开发者进行系统测试或跨境业务模拟注册。\n\n### 2026 年 1 月 29 号添加\n#### Sunny(深圳) - [Github](https://github.com/Sunny-by3)\n* :white_check_mark: [Moyea Streaming Video Recorder](https://www.moyeasoft.com/downloader/streaming-video-recorder/)：录制并保存主流网站流媒体视频以离线观看的工具 - [更多介绍](https://www.moyeasoft.com/downloader/)\n\n#### 超能刚哥\n* :x: [PictureKit](https://picturekit.app/)：在浏览器中批量进行各种图片处理任务，不经过服务器，可构建为自动化工作流\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [TranslateGemmaBot](https://t.me/TranslateGemmaBot)：基于Google AI翻译模型TranslateGemma构建的Telegram翻译机器人，支持多语言互译\n\n#### Poiybro\n* :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)\n\n\n### 2026 年 1 月 26 号添加\n\n#### qqhaosao(广州)\n* :white_check_mark: [Heic To Png](https://heic-to-png.online/)：免费将heic/heif格式的图片转换为png\n\n#### Shawn(北京) - [Github](https://github.com/ShawnHacks)\n* :white_check_mark: [CuteWallpaper.site](https://cutewallpaper.site/)：支持裁剪下载的可爱壁纸网站\n\n#### ZizheRuan - [Github](https://github.com/ZizheRuan), [博客](https://deepcreates.com/)\n* :white_check_mark: [AI Just Better](https://aijustbetter.com/)：AI 产品发布、宣传、推广平台，可免费提交产品，对同类产品进行横向对比\n\n#### QingJ(西安) - [Github](https://github.com/QingJ01/), [博客](https://blog.byebug.cn/)\n* :white_check_mark: [OneLook](https://onelook.byebug.cn/)：Web 端思维导图工具。它摒弃了繁杂的 UI 干扰，结合了 Markdown 的流畅输入与 SVG 的高性能渲染，为您提供所见即所得的思考空间。数据完全存储于本地，隐私无忧。\n\n### 2026 年 1 月 25 号添加\n\n#### lshimin(武汉) - [Github](https://github.com/lshimin188)\n* :white_check_mark: [SAM 3D](https://sam3d.org)：基于 Meta 开源的 SAM 3D 模型，在线将图片中的对象分割转换为高精度 3D 模型\n\n### 2026 年 1 月 24 号添加\n#### suxiaoshuang2020-arch - [Github](https://github.com/suxiaoshuang2020-arch)\n* :white_check_mark: [2d & 3d 文件格式转换器](https://www.3dpea.com/)：2D&3D 文件格式转换器，支持包含：png to stl, obj to stl， webp to png 等\n* :white_check_mark: [dicom to stl](https://dicom2stl.io/)：将 dicom 医学扫描文件转为可打印的 3d stl 文件的工具\n\n#### Justin3go(北京) - [博客](https://justin3go.com)\n* :white_check_mark: [HUNT0 - Ship Early. Hunt Early](https://hunt0.com)：产品发布平台，类似 ProductHunt，欢迎提交～\n\n\n### 2026 年 1 月 21 号添加\n\n#### lixiaofei162-code - [Github](https://github.com/lixiaofei162-code)\n* :white_check_mark: [Agent – Claude Code skills 精选导航站](https://agent-skills.cc/)：从收集的 6w+ agnet-skills 中精选出 1000+ 实用/有趣的 Claude Code Skills，持续更新中\n\n#### KevinKaul\n* :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.\n\n### 2026 年 1 月 20 号添加\n\n#### monsoonw\n* :white_check_mark: [MP3 to Text, TXT & SRT Converter](https://mp3totext.net)：在线 MP3 转文本工具，可将 MP3 转为 TXT 或 SRT（字幕）\n\n### 2026 年 1 月 19 号添加\n\n#### peekaboo(重庆)\n* :white_check_mark: [音频转文字](https://transcribetotext.org/)：即时将音频转换为文字\n\n#### JoyX(深圳)\n* :white_check_mark: [Image To STL](https://imagetostl.io)：将图像转换为 STL 文件以进行3D打印\n\n#### Johnson Zou(武汉)\n* :white_check_mark: [Cowork Skills](https://www.cowork-skills.com/)：收集 Claude Cowork Prompt 模板\n* :white_check_mark: [Figma 打印工具落地页](https://www.printery.app/)：导出 CMYK 色彩模式、出血位、300 DPI 的可直接用于印刷的 PDF 文件\n* :white_check_mark: [Square Face Icon Generator](https://www.squarefaceicongenerator.co/)：生成方形脸图标工具\n\n#### catscai - [Github](https://github.com/catscai)\n* :x: [picfittool.com](https://picfittool.com/)：图片处理网站，支持 App Store、Google Play 上架截图批量处理，证件照处理，通用裁剪、抠图、压缩、水印等功能\n\n### 2026 年 1 月 17 号添加\n\n#### James zhou - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [sotavideoai.com](https://sotavideoai.com/)：最新的 AI 视频生成模型，创建具有同步音频、对话和效果的逼真且物理准确的视频。\n\n#### wufuliang561 - [Github](https://github.com/wufuliang561)\n* :white_check_mark: [Img2Img.net](https://img-2-img.net/)：AI 图像到图像生成器，支持多种艺术风格转换，如吉卜力、赛博朋克、油画等。\n\n#### Hugh - [博客](https://pixsprout.com/posts)\n* :white_check_mark: [pixsprout.com](https://pixsprout.com/text-to-stamp)：专注于生成复古橡皮印章效果的 AI 工具，支持文字生成印章、图片转印章及自动去底 - [更多介绍](https://pixsprout.com/image-to-stamp)\n\n### 2026 年 1 月 16 号添加\n\n#### Adrien Millot - [Github](https://github.com/camgraphe)\n* :white_check_mark: [MaxVideoAI](https://maxvideoai.com/)：多模型 AI 视频生成平台（文生视频 / 图生视频），提供公开的模型页面、提示词参考和示例，用于探索不同的视频生成模型。\n\n#### Hugh (杭州) - [博客](https://squareface.app/blog)\n* :white_check_mark: [Square Face Generator](https://squareface.app)：致敬 Flash 时代的在线像素头像生成器，支持将设计的头像导出为 3D 纸模 (Papercraft) PDF 图纸 - [更多介绍](https://squareface.app/generators/square-face-papercraft-generator)\n\n#### Jack (杭州) - [博客](https://karmictail.com/blog)\n* :white_check_mark: [Karmic Tail Calculator](https://karmictail.com)：基于命运矩阵体系的在线计算器，解析用户的业力尾巴与阿卡纳能量 - [更多介绍](https://karmictail.com/blog/what-is-my-karmic-tail)\n\n#### upup熊猫(广州) - [Github](https://github.com/pandaupup)\n* :white_check_mark: [Speaking Time Calculator](https://speakingtimecalculator.org)：估算文本/演讲稿时长的小工具，无需注册，只需粘贴文本或输入字数，然后设置语速即可\n\n### 2026 年 1 月 15 号添加\n\n#### xingstarx - [Github](https://github.com/xingstarx)\n* :white_check_mark: [AI人像移除工具](https://nanobananaeditor.cc/zh/remove-person-from-photo)：从照片中移除不需要的人像，基于 Nano Banana 模型\n\n#### ChenCong91 - [Github](https://github.com/ChenCong91)\n* :white_check_mark: [BabyFilter AI](https://babyfilter.art)：将用户上传的人物照转换为小时候的照片\n\n#### jvxiao(Shenzhen) - [Github](https://github.com/jvxiao), [博客](https://jvxiao.cn)\n* :white_check_mark: [图片工具箱](https://tools.jvxiao.cn)：全平台支持的在线图片处理工具集，涵盖压缩、裁剪、AI 抠图、背景替换、格式转换与水印功能\n\n### 2026 年 1 月 13 号添加\n\n#### Y80 - [Github](https://github.com/Y80)\n* :white_check_mark: [BMM](https://bmm.lccl.cc)：你的专属书签管家，含管理员系统、用户系统，支持 AI 自动整理书签、标签，可自行部署\n\n#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)\n* :white_check_mark: [蒲公英](https://www.pugongying.ink/)：反社交、无痕迹的极简表达平台，提供没有账号、没有互动、不留痕迹的平台，能低负担地表达想法，实现“说出来就放下”的需求，而非建立关系或社交联系\n\n<!--\n#### Eric（上海） - [Github](https://github.com/ChenCong91)\n* :x: [BabyFilter AI](https://babyfilter.ai)：将用户上传的人物照转换为小时候的照片\n-->\n\n#### 詹姆斯 周 - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [Videoeditai.app](https://videoeditai.app/)：人工智能视频编辑平台，可通过文本提示转换视频内容，添加/删除对象，生成新相机角度，应用风格转移，修改照明\n\n### 2026 年 1 月 12 号添加\n\n#### BC - [Github](https://github.com/cwingho)\n* :white_check_mark: [Subnet Mask Cheatsheet](https://subnetmaskcheatsheet.com/)：子网掩码速查表和网络计算工具网站，提供 CIDR 计算器、IP 地址查询、VLSM 计算器等实用工具。\n#### zongguowu - [Github](https://github.com/zongguowu)\n* :white_check_mark: [Seedream 4.0 生成和编辑 Image Studio](https://seedream4.me/)：最多上传 10 张图片或从提示开始。混合、增强和动画——所有这些都由 Seedream 4.0 的多模态模型提供支持。\n\n#### hydemei - [Github](https://github.com/hydemei)\n* :white_check_mark: [toolrain.com](https://toolrain.com/)：AI导航站，可免费提交，收录处理快\n\n#### businesszh - [Github](https://github.com/businesszh)\n* :white_check_mark: [免费 AI 视频生成器 Sora 2](https://aisora2.com/)：即刻创建逼真视频\n\n### 2026 年 1 月 9 号添加\n\n#### tzzp1224 - [Github](https://github.com/tzzp1224)\n* :white_check_mark: [RepoReaper](https://www.realdexter.com/)：Github AI 代码审计探员（基于 DeepSeek），面向计算机学生和初学者的源码阅读教育工具\n\n#### wo-zx - [Github](https://github.com/wo-zx)\n* :white_check_mark: [上码 (Upma)](https://upma.cn/)：静态网站托管平台，专为国内开发者打造，支持 React / Vue / Next.js 一键部署与 CDN 全球加速\n\n### 2026 年 1 月 8 号添加\n\n#### BC - [Github](https://github.com/cwingho)\n* :white_check_mark: [UV Index Today](https://uvindex.cc/)：实时显示所在地紫外线指数的工具\n\n#### allen2peace - [Github](https://github.com/allen2peace)\n* :white_check_mark: [ChatFlowchart](https://chatflowchart.com/)：通过语言描述生成图表，可编辑文案，可导出 PDF 或图片\n\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n* :white_check_mark: [zimageturbo](https://zimageturbo.com/)：通过语言描述生成图片\n\n#### Jack\n* :white_check_mark: [YourRizzAI](https://yourizzai.com)：AI 聊天分析工具，一键生成自然的约会对话和回复建议\n\n### 2026 年 1 月 7 号添加\n#### yzqzy - [Github](https://github.com/yzqzy)\n* :white_check_mark: [TradeSignal](https://tradersignal.org/)：AI 股票分析 + 专业盘后复盘工具｜价值为基、趋势为策\n\n#### Mr-ZhangBo - [Github](https://github.com/Mr-ZhangBo)\n* :white_check_mark: [Easydown](https://www.easydown.org/en)：下载 TikTok、YouTube、Twitter 视频\n\n#### pillow(重庆市)\n* :white_check_mark: [grok images](https://grokimages.org/)：AI 图片平台，将想法变成视觉作品\n\n### 2026 年 01 月 05 号添加\n\n#### Brian Chan - [Github](https://github.com/cwingho)\n* :x: [Collage87](https://collage87.com/)：创建精美网格照片\n\n#### WtecHtec(深圳) - [Github](https://github.com/WtecHtec), [博客](github.com/WtecHtec)\n* :white_check_mark: [SnapWrite](https://snapwrite.xujingyichang.top/)：专注微信公众号的 AI 自动排版工具。一键将文本转化为精美移动端布局，支持实时手机预览与富文本一键复制。\n\n#### lizhichao  - [Github](https://github.com/lizhichao)\n* :white_check_mark: [时间转换为工具](https://gorm.vicsdf.com/time.html)：支持批量转换、填写备注、切换时区\n\n### 2026 年 01 月 04 号添加\n\n#### JentleTao - [Github](https://github.com/Hipepper)\n* :x: [SecTech Vis 安全能力可视化](https://tipfactory.jentletao.top/)：可视化安全对抗技术平台 - [开源地址](https://github.com/Hipepper/SecTech-Vis)\n\n### 2026 年 01 月 03 号添加\n\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz)\n* :white_check_mark: [Sheas Frameg](https://frameg.spacetimee.xyz)：开源光流法在线视频插帧工具 - [更多介绍](https://github.com/SpaceTimee/Sheas-Frameg)\n\n#### WtecHtec(深圳)\n* :white_check_mark: [WordMoment](https://wordmoment.xujingyichang.top/)：专注于背单词的纯前端 Web 应用 - [开源地址](https://github.com/WtecHtec/WordMoment)\n\n#### hackun666 - [Github](https://github.com/hackun666)\n* :white_check_mark: [软著 Pro](https://ruanzhu.pro)：AI 软著生成器，帮助用户生成软件著作权申请文档\n\n### 2026 年 01 月 01 号添加\n\n#### Flicker(成都)\n* :white_check_mark: [VoiceAILabs](https://voiceailabs.com/)：专业AI声音克隆平台，创建您的语音克隆角色\n\n#### zhouzhili - [Github](https://github.com/zhouzhili)\n* :x: [QQ相册下载器](https://blog.aitoolwang.com/qq/)：三步完成QQ空间、QQ群相册照片批量下载到电脑，原图原视频下载，保留拍摄时间。\n\n### 2025 年 12 月 31 号添加\n\n#### wangxiaosu - [Github](https://github.com/wangxiaosu)\n* :white_check_mark: [Text Behind Image](https://text-behind-image.org/)：实现“字在人后”视觉深度，制作高级感海报\n\n#### xiaolige 长沙\n* :white_check_mark: [nano-banana中文站](https://www.nano-banana.cn/zh)：提供提示词模板，帮助用户快速生成图片\n\n#### lingglee(武汉) - [Github](https://github.com/lingglee)\n* :white_check_mark: [authletter.com](https://www.authletter.com)：委托信模板站，提供各种场景委托信模板，支持 AI 一句话生成委托信、编辑和下载\n\n### 2025 年 12 月 29 号添加\n\n#### jiyifeng(重庆) -\n* :white_check_mark: [Upscale image](https://upscale-image.org/)：增强和放大图像\n\n### 2025 年 12 月 28 号添加\n\n#### StarCityBro(长沙)\n* :white_check_mark: [FeiHub](https://feihub.top)：公开的飞书文档搜索，已收录包括：垂直小店、Gemini、AI产品、Claude Code、CPS、Sora、AI工作流、AI视频、AI短剧、AI漫剧、AI漫画、YouTube、小红书电商、电商选品、AI自媒体、n8n、私域运营、B站好物、外卖推客、RPA等 6000+的知识文档。\n\n#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)\n* :white_check_mark: [fuckpua](https://www.saynopua.com)：用 AI 帮助识别和抵抗情感操控与PUA套路、提供分析和练习工具的心理防护平台\n\n### 2025 年 12 月 26 号添加\n\n#### LeeYuze - [Github](https://github.com/LeeYuze)\n* :white_check_mark: [WhatsMyName](https://www.whatsmyname.cc/)：OSINT 用户名搜索与可用性检查工具，可实时扫描 700+ 平台，验证账号存在与数字足迹（匿名、不记录搜索历史）。\n\n#### 菩提尘埃(厦门) - [Github](https://github.com/waterlines)\n* :white_check_mark: [外链管理系统](https://backlink.dreamthere.cn)：SEO外链管理系统\n\n### picaro - [Github](https://github.com/2002pipi)\n* :white_check_mark: [FlowSpeech](https://flowspeech.io)：文本转语音，声音接近人类\n\n### 2025 年 12 月 24 号添加\n\n#### nanobanana-co - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [Nano Banana Pro](https://nanobanana.co/zh)：AI 图像与视频生成平台，支持精准区域编辑、照片修复、风格转换、多图融合、角色一致性保持及视频生成\n\n#### Rock(上海)\n* :white_check_mark: [Graffiti generator](https://www.graffitigenerators.com/)：AI 街头涂鸦艺术生成器（基于 Nano Banana Pro）\n\n### 2025 年 12 月 23 号添加\n\n#### Albert-Weasker - [Github](https://github.com/Albert-Weasker)\n* :white_check_mark: [牛逼 Star](https://www.niubistar.com)：面向开源开发者的 GitHub Star 互助与项目展示平台，让用户互相为项目点 “Star”，帮助开源项目获得真实曝光和更高关注度\n* :white_check_mark: [Intent-Leads](https://www.intent-leads.com/)：帮助企业自动发现和整理“高意图潜在客户”线索，基于社交媒体和公开平台行为数据（即正在主动寻找产品/服务的人）以便联系和转化的获客工具\n\n#### tancky777 - [Github](https://github.com/tancky777)\n* :white_check_mark: [LensGo AI](https://lensgoai.co/)：AI 视频 & 图片创作，专注于动漫艺术风格的图片风格迁移或图片、视频制作\n* :x: [Gemini Watermark Remover](https://geminiwatermark.net/)：Gemini AI 图片、nano banana、nano banana pro 去水印\n\n#### zhangchenchen - [Github](https://github.com/zhangchenchen)\n* :white_check_mark: [music0](https://music0.org/)：AI 音乐/音乐视频生成平台\n\n### 2025 年 12 月 22 号添加\n\n#### Yiann(大连) - [Github](https://github.com/taingh)\n* :white_check_mark: [UniMusic AI](https://unimusic.ai)：AI 音乐生成 - 根据你的描述一键生成专业完整的音乐\n\n#### amierhan - [Github](https://github.com/amierhan)\n* :white_check_mark: [nbpro.io](https://nbpro.io/)：一站式 AI 图像与视频生成平台，整合了当前领先的图像与视频生成模型，包括 Nano Banana、Nano Banana Pro、sora2 等。平台内置智能提示词优化器，并提供大量真实可参考的生成案例，帮助用户创作高质量内容，生成的图片和视频均不带水印，适用于多种专业与商业场景\n\n#### zhugezifang - [Github](https://github.com/zhugezifang)\n* :white_check_mark: [颜值评分](https://howattractiveami.app/zh)：AI 颜值测试\n* :white_check_mark: [在线眼型测试](https://eyeshapedetector.app/zh)：AI 眼型分析\n* :white_check_mark: [面部年龄计算器](https://howolddoyoulook.app/zh)：AI 面部年龄检测器\n\n### 2025 年 12 月 21 号添加\n\n#### azt1112 - [Github](https://github.com/azt1112)\n* :white_check_mark: [GPT Image 1.5](https://chatgptimage15.com/)：AI 图片生成网站，基于 GPT Image 1.5\n\n### 2025 年 12 月 20 号添加\n\n#### yoga666yoga888-lgtm - [Github](https://github.com/yoga666yoga888-lgtm)\n* :white_check_mark: [Sora21](https://www.sora21.com/)：视频生成网站，基于 Sora2 模型，高性价比\n\n#### hwlvipone - [Github](https://github.com/hwlvipone)\n* :white_check_mark: [palm reading online](https://palm-reading.app/)：AI 看手相网站\n\n#### allen2peace - [Github](https://github.com/allen2peace)\n* :white_check_mark: [FluentDictation](http://fluentdictation.com/)：使用任意 YouTube 视频练习英语听写、英语跟读能力\n\n#### jankarong - [Github](https://github.com/jankarong)\n* :white_check_mark: [AI YouTube 缩略图生成器](https://aithumbnailcreator.com/)：生成 Youtube 缩略图，可免费下载，支持纯色或渐变背景\n\n#### hwlvipone - [Github](https://github.com/hwlvipone)\n* :white_check_mark: [ZestyGen](https://zestygen.com/)：基于 Nano Banana Pro 的图片视频聚合网站\n\n### 2025 年 12 月 18 号添加\n#### jonbrown66 - [Github](https://github.com/jonbrown66/bananacanvas-ai)\n* :white_check_mark: [BananaCanvas AI](https://bananacanvas-ai.vercel.app/)： 前沿的创意工作区，结合了基于对话的 AI 交互和无限画布，用于多模态内容创作。\n\n### 2025 年 12 月 16 号添加\n#### Brian Chan\n* :white_check_mark: [logo87.com](https://logo87.com)：几秒钟创建专业的 favicon\n\n#### Nico - [Github](https://github.com/yijianbo)\n* :white_check_mark: [News In Simple](https://newsinsimple.com/)：基于 AI 的英语学习新闻网站，提供初、中、高三级分级新闻及配套阅读、听力、词汇和测验素材\n\n#### Dakuai - [GitHub](https://github.com/YananLee?tab=repositories)\n* :white_check_mark: [Word Cloud Art](http://www.wordcloud.art/)：词云生成器，支持AI词生成2k+模版丰富的颜色搭配方案\n\n#### weiqingtangx - [GitHub](https://github.com/weiqingtangx)\n* :white_check_mark: [LRC Generator](https://www.quicklrc.com/): 生成 LRC、SRT、TTML、WEBVTT 和 ASS 等字幕格式的网站，支持行级和词级时间戳。生成的字幕文件可用于音乐播放器、视频编辑器和主流流媒体播放器\n\n### 2025 年 12 月 15 号添加\n#### coderlei - [Github](https://github.com/acmenlei)\n* :white_check_mark: [牛笔AI - 微信公众号排版工具_在线图文排版神器](https://niubi.codecvcv.com)：基于 Markdown 和所见即所得编辑模式，提供精美主题样式，一键美化公众号文章排版、导出图文卡片，只需要编写一份内容就可以得到文章内容和图文卡片，免费使用\n\n#### august - [github](https://github.com/august-xu)\n* :white_check_mark: [Dunk Calculator](https://www.dunkcalculator.online/)：Dunk Calculator - How High Do You Need to Jump to Dunk?\n* :white_check_mark: [Tbsp to Cups Converter](https://tbsptocups.com/)：Tablespoons to Cups Converter [Chart + Printable PDF]\n\n#### RickyLee \n* :white_check_mark: [TankMate AI](https://tankmate.org/?utm_source=github)：查询鱼能否混养。分析攻击性、pH 值和鱼缸尺寸，帮您规避混养风险\n\n#### AppScreenshots\n* :white_check_mark: [AppScreenshots](https://appscreenshots.net/)：生成应用商店截图，支持 iOS、Android、Chrome、HarmonyOS 等平台，支持 3D 设备展示和 AI 驱动的 Mockup 创建工具\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [极简AI生图](https://image.stockai.trade)：AI 生图网站，完全免费、免登录、无广告、无水印\n\n\n### 2025 年 12 月 14 号添加\n#### yuhanw496-sketch - [Github](https://github.com/yuhanw496-sketch)\n* :x: [YourGirlfriend.app](https://www.yourgirlfriend.app/)：AI 伴侣（专注于对话与情感支持），提供自然流畅的聊天体验，适合缓解压力或日常陪伴\n* :white_check_mark: [Hailuo AI](https://www.hailuoai.work/)：AI 内容生成工具，无需剪辑软件，将创意快速转化为动画视频，简化视频制作流程\n* :white_check_mark: [Nano Banana 2 AI](https://banananano2.ai/)：AI 图像生成工具（支持角色一致性保持与多步工作流，兼顾速度与质量），适合快速产出专业视觉内容\n* :white_check_mark: [Flux 2 AI](https://flux-2-ai.com/)：AI 绘画工具（无需注册即可生成 2K-4K 高清图像），支持多模型切换，适合快速创意验证与设计\n\n#### seven(沈阳)\n* :white_check_mark: [视力测试](https://eyetestonline.org/): 视力测试（免费）包括视力（visual acuity）、色觉（color）、对比度（contrast）和视野（field screening）筛查\n\n### 2025 年 12 月 13 号添加\n#### Ivanvolt(wh) - [博客](https://ivanvolt.com)\n* :white_check_mark: [Aluo AI](https://aluo.ai)：AI 产品图生成与电商图片编辑工具\n* :white_check_mark: [AiDirs](https://aidirs.best)：探索并分享最佳人工智能工具\n\n#### Toby(南京)\n* :white_check_mark: [YoChanger](https://yochanger.com/)：AI 换装，在线试衣间\n\n### 2025 年 12 月 12 号添加\n#### Ri_vai(sz)\n* :white_check_mark: [Nano Banana Pro](https://applebanana.pro/)：AI 图片生成、图片编辑网站\n\n#### WtecHtec(s) - [Github](https://github.com/WtecHtec), [博客](https://wtechtec.com/)\n- :white_check_mark: [PassScan](https://xujingyichang.top/)：简历分析工具（AI驱动），支持人岗匹配、多维度人才画像分析\n\n#### xxk1323(郑州)\n* :white_check_mark: [ImagineGo](https://imaginego.ai)：视频和图像模型聚合站，目前上线 10+ 模型\n\n#### Wcowin(重庆) - [Github](https://github.com/Wcowin), [博客](https://wcowin.work/)\n* :white_check_mark: [OneClip](https://oneclip.cloud/)：剪贴板管理工具（专为 macOS 设计），支持多种格式内容管理，智能搜索和分类，让您的复制粘贴操作更加便捷高效 - [更多介绍](https://wcowin.work/blog/OneClip/)\n\n#### Shawn(北京) - [Github](https://github.com/ShawnHacks)\n* :x: [Screentell](https://screentell.com)：录屏工具(低门槛)，可以满足 90 %以上的录屏 DEMO 需求，特色支持手绘风格贴纸 - [更多介绍](https://x.com/ShawnHacks/status/1996480396637446197)\n\n#### biboom(广州)\n* :white_check_mark: [YouTube 字幕生成器](https://transcriptinprogress.online)：将 Youtube 视频转为文字\n\n### 2025 年 12 月 11 号添加\n#### handsometong\n* :white_check_mark: [Future Me AI](https://futuremeai.app/)：专为儿童设计的 AI 职业肖像生成器。上传孩子照片，从 50+ 职业中选择，生成激发梦想的专业未来职业照片\n* :x: [kirkify ai](https://kirkifyai.net/)：将任意人脸变成 Kirkify 梗图\n\n#### Leon(杭州) - [Github](https://github.com/fangweihao123)\n* :white_check_mark: [LearnFlux](https://www.learnflux.net)：AI 驱动的智能学习助手，为你生成个性化学习材料，让你以更少时间掌握更多知识。\n\n### 2025 年 12 月 9 号添加\n#### pillow(重庆) \n* :white_check_mark: [AI Voice Cloning](https://aivoicecloning.net)：AI 声音克隆\n\n#### BOS1980 - [GitHub](https://github.com/BOS1980)\n* :white_check_mark: [Humanizadordeia.app](https://humanizadordeia.app/)：将AI文本转化为自然人类写作。1）人性化处理，让 AI 文本更自然、更贴近人工写作与品牌口吻；2）检测服务，帮助识别潜在 AI 生成内容，提升合规与质量。支持多语种、极速处理、保留语义与风格。免注册体验 300 字，适合博主、营销团队、跨境站点、教育与企业内容运营。以先进模型（GPT、Claude、Gemini 等）驱动。\n\n#### DeadWave(北京) - [Github](https://github.com/DeadWaveWave)\n* :x: [Demo2APK](https://demo2apk.lasuo.ai)：把 Gemini 做的 Demo 一键打包成APK - [项目开源地址](https://github.com/DeadWaveWave/demo2apk)\n\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n* :white_check_mark: [musci](https://musci.io/)：AI 音乐生成，支持多语言\n\n#### lkunxyz - [Github](https://github.com/lkunxyz)\n* :white_check_mark: [videobackgroundremover](https://videobackgroundremover.io/)：视频去背景\n\n### 2025 年 12 月 7 号添加\n#### ALioooon(南京)  \n* :white_check_mark: [Address Generator](https://addressgen.top)：随机地址生成工具（支持 40+ 国家/地区） — 随机生成结构化地址，适合测试／模拟注册／本地化展示\n\n#### mztkn(深圳) \n* :white_check_mark: [云文档查找工具](https://www.cloudocs.top/)：分享云文档的平台。定位是纯粹的分享平台。除了直接使用网站，还可以打开微信小程序“云文档查找工具”，输入关键词，就能找到心仪的文档。内容平台丰富，涵盖飞书云文档、Notion、语雀、FlowUS、金山云文档、腾讯云文档等众多平台的公开云文档\n\n#### Xibobo - [Github](https://github.com/my19940202) [Twitter](https://x.com/xishengbo)\n* :white_check_mark: [小红书笔记AI生成](https://www.red-note.top/zh/create)：基于人设，使用多个AI生成小红书笔记，助力自媒体博主快速生成图文内容，提升个人IP搭建效率\n  \n### 2025 年 12 月 6 号添加\n#### Victory - [Github](https://github.com/victorymakes) [Twitter](https://x.com/victorymakes)\n* :white_check_mark: [launchsaas.org](https://launchsaas.org)：最佳的 Next.js SaaS 模板，几个小时就能上线你的 SaaS 开始盈利\n\n### 2025 年 12 月 4 号添加\n#### Williams\n* :white_check_mark: [AI Excel Translator](https://aiexceltranslator.com/)：批量翻译 Excel 或 CSV 文档，支持 100+ 语言。\n\n#### PlayerYK\n* :white_check_mark: [SongGuru.AI](https://songguru.ai/)：使用 AI 生成音乐、写歌词还可以分离音乐中的乐器和人声\n\n#### ExtsBox\n* :white_check_mark: [PromptGather](https://promptgather.io/)：手工挑选的上千条视频、图片提示词，全部免费查看。可以直接复制使用，也可以用 AI 微调，生成图片、视频。\n\n#### jzhone\n* :x: [CheckAIBots](https://checkaibots.com)：CheckAIBots 能检测 40+ 个AI爬虫是否在爬你的网站，一键生成屏蔽代码（nginx/Apache/Cloudflare）并计算能省多少带宽费\n\n#### JL\n* :white_check_mark: [CSVtoAny](https://csvtoany.com/)：CSV 格式万能转换，CSV 格式转化一站式解决方案\n\n#### 超能刚哥 - [Github](https://github.com/margox)\n* :white_check_mark: [随身小记](https://smartnote.chat/)：随身记事AI助理，可记账、记事、记物，并以时间线形式展示；支持语音快速创建记录。\n\n### 2025 年 12 月 3 号添加\n#### wang1309(深圳) - [GIthub](https://github.com/wang1309)\n* :white_check_mark: [Story Generator](https://storiesgenerator.org/)：故事创作工具平台（免费），支持故事、标题、诗歌、情节生成和导出，支持用户创作概览、用户故事广场功能\n \n#### mingforpc(珠海) \n* :x: [PaperPrint](http://paperprint.officedocprint.com/)：打印纸模版网站（免费），支持多种打印纸模版并且支持在线调整、预览、导出图片和PDF\n\n### 2025 年 12 月 2 号添加\n#### Selenium39(广州) - [Github](https://github.com/Selenium39)\n* :white_check_mark: [E-ink](https://e-ink.me/zh)：网页转电子书工具的平台（免费），支持将网页快速转换为多种电子书格式并在线阅读与编辑\n\n#### 星舟(深圳) - [Github](https://github.com/lzzzzl)\n* :white_check_mark: [ShowMeBestAI](https://showmebest.ai/)：最全面的 AI 工具目录，包含 3632+ 个 AI 工具。为您的业务、创意和生产力需求找到完美的 AI 工具\n* :white_check_mark: [DeepSong AI](https://deepsong.ai/)：AI 生成音乐和歌曲，原创且免版税\n\n### 2025 年 11 月 29 号添加\n#### lianhr12(深圳) - [Github](https://github.com/lianhr12)\n* :x: [AppIconGenerator](https://appicongenerator.org/)：浏览器端 AI 驱动的应用图标生成器，隐私优先，支持 iOS/Android/Chrome Store 资源一键生成 - [更多介绍](https://appicongenerator.org/)\n\n#### pekingzcc(北京) - [Github](https://github.com/zhangchenchen)\n* :white_check_mark: [sora2 api](https://www.sora2api.org/)： Sora2Api 通过统一 API 实现无水印的 Sora2视频生成, 低至 $0.1/ video\n\n#### Chaowen(深圳) - [Github](https://github.com/tanchaowen84)\n* :x: [VeriIA | Detector de ia](https://detectordeia.pro)：面向西语世界的 AI 检测和抄袭检测工具，支持西班牙语和英语文本的 AI 使用率评估与句子级高亮标注，帮助在「使用 AI」与「保持原创与透明」之间找到平衡。\n\n#### cg33(广州) - [Github](https://github.com/chenhg5)\n* :white_check_mark: [Modern Mermaid](https://modern-mermaid.live)：mermaid 代码编辑生成器（现代好看，拥有多种主题模板），帮你做更好看的文档\n* :x: [Trendhub](https://trendhub.wowwwow.cn/)：热点新闻过滤推送器，自定义过滤您的每天热点新闻，让你免受非重要热点新闻的干扰 - [Github](https://github.com/gotoailab/trendhub)\n\n### 2025 年 11 月 28 号添加\n#### Rico(重庆) - [Github](https://github.com/rico-c)\n* :white_check_mark: [Voyagard](https://voyagard.com)：AI 学术论文编辑器，有 AI 编辑，一键查重降重，AI推荐文献索引等功能， 帮助你完成从选题调研，文献索引并管理， AI协助撰写等功能，帮助你轻松完成论文撰写\n* :white_check_mark: [优秀同传](https://interpreter.youshowedu.com)：同声传译 APP，支持 21 国语言的实时语音翻译，同时也支持语音实时朗读， 支持AI面向音频总结思维导图并AI对话， 随时回看历史记录， 支持 iOS 安卓 Web 端， 是行业领先精准度的同声传译 APP\n\n#### Lee - [Github](https://github.com/lkunxyz)\n* :x: [ltx2](https://ltx2.video)：基于 ltx2 模型的视频生成，支持最长 20 秒视频\n\n#### ghost-him(青岛) - [Github](https://github.com/ghost-him), [博客](https://www.ghost-him.com)\n* :white_check_mark: [ZeroLaunch-rs](https://github.com/ghost-him/ZeroLaunch-rs)：Windows 智能启动器。极速、隐私优先，精通拼音与模糊匹配；可选本地 AI 语义检索，让错字与意图搜索也能秒速直达 - [更多介绍](https://zerolaunch.ghost-him.com)\n\n### 2025 年 11 月 26 号添加\n#### Light\n* :white_check_mark: [Vintage Paper Texture Generator](https://papertexture.io/)：Vintage Paper Generator | HD Kraft & Aged Textures\n\n#### Carys - [Github](https://github.com/Caron77ai)\n* :white_check_mark: [Banana Editor](https://bananaeditor.art)：基于 Gemini 3.0 Pro 的免费 AI 图片编辑器，支持精确修图、背景替换、服装更换等功能，提供 3 个免费积分 + 每日签到可获 100+ 积分\n\n#### klemperer - [Github](https://github.com/klemperer/binglish)\n* :white_check_mark: [Binglish- AI桌面英语](https://github.com/klemperer/binglish)：自动更换必应 Bing 每日壁纸，顺便学个单词（AI 生成相关解释、相关好句、语音说明等）。 点亮屏幕，欣赏美景，邂逅知识，聚沙成塔。\n\n### 2025 年 11 月 25 号添加\n#### fayecat - [Github](https://github.com/fayecat)\n* :white_check_mark: [Floaty](https://www.floatytool.com/)：让 macOS 任意窗口保持置顶的工具\n\n#### amierhan - [Github](https://github.com/amierhan)\n* :x: [banana-pro.com](https://banana-pro.com/)：Banana Pro AI 图像、视频创作平台。整合了 Nano Banana Pro、Nano Banana 以及 Sora2 模型。它可以高效生成高分辨率图像（最高 4K）和流畅的视频，同时提供智能提示优化、角色一致性、对复杂场景的上下文理解等功能\n\n#### huashengjieguo\n* :white_check_mark: [免费在线硬件测试平台](https://volumeshader.org/zh)：GPU 测试，屏幕测试，FPS 测试，网络测试，摄像头检测，声音测试，鼠标测试，键盘测试\n\n#### flingyp(上海) - [Github](https://github.com/flingyp)\n* :white_check_mark: [今天记了么](https://flingyp.online/posts/%E4%BB%8A%E5%A4%A9%E8%AE%B0%E4%BA%86%E4%B9%88.html)：日常记录打卡目标的微信小程序。用科学打卡，让自律变成简单的日常 \n\n#### lucen\n* :white_check_mark: [online-timer](https://icebreaker-games.org/online-timer)：在线会议计时器，让您的站会、研讨会和演讲保持高效，按时进行。\n\n#### SoftRoyals\n* :white_check_mark: [可愛い絵文字と顔文字](https://kawaiiemoji.com/)： 可愛い絵文字と顔文字网站，精选的可爱表情符号和表情文字合集，用于SNS社交媒体和聊天消息。\n\n### 2025 年 11 月 23 号添加\n#### rosicky(杭州)\n* :white_check_mark: [Nano Banana Pro](https://nanobananapro.art/)：AI 图像生成和编辑工具，支持4k画质生成,集成多种图像风格模版.\n\n### 2025 年 11 月 20 号添加\n#### zhugezifang\n* :white_check_mark: [公共网络记事本](https://share-text.org/)：在线网络记事本，支持创建，以及链接和二维码分享\n\n#### pandaupup(广州) - [Github](https://github.com/pandaupup)\n* :white_check_mark: [Word to Time Calculator](https://wordtotime.org)：根据稿子字数快速计算阅读，演讲，汇报时间的小工具\n\n#### Eminlin(厦门) - [Github](https://github.com/eminlin), [博客](https://www.eminlin.com)\n* :white_check_mark: [屿乐春城邮](https://www.springcitypost.cn)：真实信箱代理，轻松管理您的信件 - [更多介绍](https://www.springcitypost.cn/zh-CN/qna)\n\n#### JL\n* :white_check_mark: [Compare Two Word](https://compare2word.com/)： Word 文档在线对比工具，支持 Word, Excel, PDF, PPT, TXT，让文档比对变得简单、安全\n\n### 2025 年 11 月 19 号添加\n#### Ronald\n* :x: [批量域名检查](https://domainschecker.top/)：提供域名年龄、可用性、历史记录，DNS 解析等功能的免费工具，支持 1000+ 顶级域名，可批量检查域名, 无需注册的综合域名分析平台\n\n### 2025 年 11 月 18 号添加\n#### basulee(上海) - [Github](https://github.com/BasuLee)\n* :white_check_mark: [Gif To Frames](https://giftoframes.com/)：将 GIF 图转换为每一帧，支持生成雪碧图，支持反向合成多张图片为 GIF 图，可控制时间间隔及尺寸\n\n#### levan(深圳) - [Github](https://github.com/L-Evan)\n* :x: [trygempix2.pro](https://trygempix2.pro)：Gempix2、nanobanana2、flux、veo3.1 视频工具站（Free）\n* :x: [veo-ai.cloud](https://veo-ai.cloud)：Veo 视频站（Free）\n* :clock8: [iaiapp.org](https://iaiapp.org)：AI App 导航站 + 工具站（开发中，Free）\n* :clock8: [nanobanana2ai.art](https://nanobanana2ai.art)：nanobanana2 模型壁纸工具站（开发中，Free）\n\n### 2025 年 11 月 14 号添加\n#### xiaoxiao(南昌)\n* :white_check_mark: [小故事铺](https://storynook.cn/)：故事平台，专为儿童及家庭设计，致力于为孩子们提供多样化、富有教育意义的睡前故事，帮助他们在轻松愉快的环境中提升阅读能力，激发想象力，并且培养良好的品德 - [Github 仓库](https://github.com/masterliangpeng/story)\n\n#### zpng(北京) - [Github](https://github.com/zpng)\n* :white_check_mark: [MakeManga](https://www.makemanga.ai/)：AI 生成漫画，支持 Nano Banana 和 Seedream 4.0 模型，只需提供故事，剩下的分镜和角色生成等都交给 AI\n\n### 2025 年 11 月 13 号添加\n#### biboom(广州) \n* :white_check_mark: [在线图片处理工具](https://imageonline.online/zh)：图片像素化工具(免费)，提供智能图片切割等功能\n\n#### zhang xinke - [Github](https://github.com/zxk1323)\n- :white_check_mark: [fanfic generator](https://fanficgenerator.com/)：AI 同人小说创作工具\n\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n- :white_check_mark: [sora2](https://sora2videogenerator.com/)：sora2 视频生成工具，支持 story board\n\n#### 老木棍(上海) - [Github](https://github.com/buhuijiaojiao/jianxiaopai)\n- :white_check_mark: [简小派](https://jianlipai.com/)：求职助手平台（AI 驱动），通过智能简历生成、岗位匹配、面试模拟、薪资分析和自动投递，帮助求职者系统性提升、全流程加速拿 offer - [更多介绍](https://docs.jianlipai.com/)\n\n#### 刀刀 - [Github](https://github.com/sfss5362)\n- :white_check_mark: [YTB Download](https://ytbdd.cc/)：YouTube 下载工具（Windows平台，免费无广告），支持下载 4K 视频、音频提取和字幕保存 \n\n#### amierhan - [Github](https://github.com/amierhan)\n* :white_check_mark: [sara2.io](https://www.sara2.io) ：AI 图像、视频一站式生成平台，内置Nano Banana、sora2 等优秀大模型。高效实现您的创意、告别多平台切换\n\n#### House(珠海) [github](https://github.com/wosuxiongmao)\n* :white_check_mark:  [ShotAI](https://shotai.org)：一键生成多个 AI 模型的图片，方便对比效果\n\n#### JohnnyXu(襄阳) - [Github](https://github.com/qwe00921)\n* :white_check_mark: [AI 图片转视频站](https://photoanimate.net/)：用图片生成视频的网站, 包括各种模板, 最新的视频模型, 后面还会加入多图片生成长视频功能\n\n#### Yuan(广州)\n* :white_check_mark: [Nano Banana AI](https://nano2image.com/)：AI 图像生成和编辑工具（免费在线），2-5 秒生成高质量图像，支持文生图和图像编辑\n\n### 2025 年 11 月 12 号添加\n#### Amyang(美国) - [Github](https://github.com/AmyangXYZ)\n* :white_check_mark: [Reze-Engine](https://reze.one)： 原生 WebGPU 实现的动画 MMD 人物渲染引擎，除物理引擎外没有第三方库 - [Github](https://github.com/AmyangXYZ/reze-engine)\n\n####  h3(广州) \n* :white_check_mark: [AI 图像站](https://www.gempix2.org)：用 nanobanana 模型的生成&编辑网站\n\n### 2025 年 11 月 11 号添加\n#### monsoonw(杭州) \n* :white_check_mark: [Nano Banana 2](https://nanobanana-2.net)：收录最新的 Nano Banana 2 模型推特，油管资讯，并第一时间提供 nano banana 2 模型体验\n\n### 2025 年 11 月 10 号添加\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n* :white_check_mark: [musci](https://musci.io)：一站式 music 生成平台 \n\n#### randompaga - [Github](https://github.com/randompaga)\n* :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创建带音频的视频。\n\n#### amierhan - [Github](https://github.com/amierhan)\n* :white_check_mark: [nanobana.net](https://github.com/1c7/chinese-independent-developer/issues/url)：一站式 AI 图像、视频生成平台网站，集合了目前世界最先进的模型，如：Nano banana、sora2 等\n\n### 2025 年 11 月 8 号添加\n#### Ri-vai - [Github](https://github.com/Ri-vai)\n* :white_check_mark: [ai world generator](https://aiworldgenerator.com/)：用文本和照片生成自然风光视频的 AI 工具网站\n\n#### nanobanana-co - [Github](https://github.com/nanobanana-co)\n* :white_check_mark: [novavideo.ai](https://novavideo.ai/)：使用领先的图片转视频 AI 模型和热门视频特效模板，将照片转化为视频\n\n#### ncgg-cyber - [Github](https://github.com/ncgg-cyber)\n* :white_check_mark: [gempix-2](https://gempix-2.org/)：收录最新的 gempix-2 模型新闻，并第一时间提供 gempix-2（nano banana2) 模型体验\n\n#### zhang xinke - [Github](https://github.com/zxk1323)\n* :white_check_mark: [photo to prompt](https://phototoprompt.org/)：将图片转化为提示词，以及图像生成\n\n#### 菩提尘埃(厦门) - [Github](https://github.com/waterlines)\n* :white_check_mark: [TAO tracker](https://taotracker.org)：TAO 子网交易监控与快捷导航工具\n\n### 2025 年 11 月 5 号添加\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [Telegram AI助手](https://t.me/iMessageAI_bot)：Telegram ChatGPT 机器人(完全免费、没有广告)，GPT-4o-mini 模型，支持图片识别，在 Telegram 中给 @iMessageAI_bot 发消息即可使用。\n\n#### Shawn (北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)\n* :white_check_mark: [Syncvoice](https://www.syncvoice.ai/)：声音克隆(超逼真)，文本转语音，支持 8 种语言，不同语言转语音保留克隆声音的独特音色\n\n#### xxk1323\n* :white_check_mark: [ai image combine](https://aiimagecombine.com/) : AI 图像站，预设了一些场景的 prompt ，不用编写复杂的 prompt 直接使用\n\n#### 翟应康(深圳)\n* :white_check_mark: [Create Custom Graffiti Art Online ](https://graffiti-generator.org)：自定义涂鸦艺术(免费，不限次数)\n\n### 2025 年 11 月 4 号添加\n#### ljxyaly(深圳)\n* :white_check_mark: [Rednote Video Download](https://www.rednote-video-download.com)：Rednote (小红书) 视频、图片去水印下载（免费、不限次数）\n\n#### Roger Zhang (上海)\n* :white_check_mark: [StreamWindow](https://apps.apple.com/cn/app/streamwindow/id6752313155?mt=12) : macOS 平台全新设计的 3D 窗口管理应用，基于轻量级 3D 办公理念，直观，所见即所得，拥有更漂亮、更炫酷的界面，丰富可玩性，增加乐趣。\n\n#### 出逃向量（杭州）\n* :white_check_mark: [厕所淘金](https://github.com/user-attachments/assets/c9dc2625-202b-4bb6-96af-7ed4e5d4c23c)：带薪拉屎计薪器，记录你每一次拉屎摸鱼所得报酬，可视化每一次拉屎的价值 - [更多介绍](https://apps.apple.com/cn/app/toilet-pay/id6752701889)\n\n### 2025 年 11 月 3 号添加\n#### Ricky Lee(深圳) \n* :white_check_mark: [KidsBedroomIdeas](https://kidsbedroomideas.org/)：AI 驱动的儿童房设计工具，根据孩子的年龄、兴趣和喜好颜色，即时生成个性化创意儿童房设计\n\n### 2025 年 11 月 2 号添加\n#### Lee - [GitHub](https://github.com/lkunxyz)\n* :white_check_mark: [Seedream Image Generator](https://seedreamimage.com/)：Seedream 图片生成\n\n#### LexTang(上海) - [Github](https://github.com/lexrus)\n* :white_check_mark: [SwiftyMenu](https://apps.apple.com/app/swiftymenu/id1567748223)：Finder 扩展自定义菜单，脚本执行、快速打开各种命令行工具。\n* :white_check_mark: [Sharptooth](https://apps.apple.com/app/sharptooth-bluetooth-hotkeys/id6748440814)：快捷键开关 Mac 蓝牙设备，脚本触发，低电量提醒。\n* :white_check_mark: [cmd+x](https://apps.apple.com/app/cmd-x/id6754665762)：为 Mac 提供 command+x, command+v 剪切文件的功能。\n* :white_check_mark: [LiveExtractor](https://apps.apple.com/app/liveextractor/id6746672642)：导出实况照片里的照片和视频的小工具。\n* :white_check_mark: [RegEx+](https://apps.apple.com/app/regex/id1511763524)：调试正则表达试的 app。\n\n### 2025 年 11 月 1 号添加\n#### Yif(上海)\n* :white_check_mark: [Magic Animal Generator](https://animalgenerator.net/)：尽情发挥你的想象力 用 AI 混合两种动物，创造前所未见的新物种\n\n### 2025 年 10 月 31 号添加\n#### dodid\n* :x: [ReadTube](https://apps.apple.com/cn/app/readtube-youtube-video-summary/id6752214777)：Youtube 视频转文字总结、幻灯片总结、AI 优化文字稿\n\n### 2025 年 10 月 30 号添加\n#### zxcHolmes\n* :white_check_mark: [FilingInsight](https://filing-insight.com/)：快速解读美股财报的 AI 工具，1 万多份财报解读，多语言支持，免费阅读\n\n#### KryoWang（广州）- [Github](https://github.com/wangxiaosu)\n* :white_check_mark: [image-to-sketch](https://www.imagetosketch.app/)：图片转素描 AI 小工具\n\n#### SparkHo(广州) \n* :white_check_mark: [媒发](https://mediaput.cn/?utm_source=1c7)：内容分发工具，将内容发布/同步到各个媒体平台，只需 1 分钟\n\n#### pillow(重庆)\n* :white_check_mark: [音频转文字工具](https://audio2textai.com)：AI 音频转文字，快速、精准、安全的转写服务\n\n#### oroKAKA - [Github](https://github.com/oroKAKA)\n* :white_check_mark: [Leawo free-screen-recorder](https://ja.leawo.com/free-screen-recorder/)：免费录像软件，支持 4K，无时长限制，无水印\n\n### 2025 年 10 月 28 号添加\n#### LinightX(苏州)\n* :white_check_mark: [AimtrainerX](https://aimtrainerx.com/)：专为 FPS 爱好者打造的瞄准训练网站，免费、上班可玩，丰富的训练模式，支持自定义训练样式\n\n### 2025 年 10 月 27 号添加\n#### Ryan(shanghai) \n* :white_check_mark: [melhorar imagem](https://melhorarimagem.me/)：针对葡萄牙地区的图片网站\n\n### 2025 年 10 月 26 号添加\n#### Horace(深圳) - [Github](github.com/lianhr12/), [博客](https://www.hrope.cn/)\n* :white_check_mark: [Full Page Screenshot](https://www.fullpagescreenshot.top/zh)：5 秒一键生成精美推广截图插件。完整网页长截图：自动滚动拼接，无需手动操作。精准元素截取：点击即可截取按钮、图片、文字段落。自由区域选择：拖拽框选，只要你想要的部分。可视区域快照：当前所见即所得。重点标注：箭头、方框、文字说明，一目了然。背景设置：多个精美模板，一键设置精致截图。一键复制：截图完成复制立即发给同事朋友\n\n#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indition.com)\n* :white_check_mark: [ResizeImage.dev](https://resizeimage.dev/)：在浏览器中直接调整图片尺寸。无需上传即可下载 - [更多介绍](https://resizeimage.dev/zh/about)\n* :white_check_mark: [ImageConverter.dev](https://imageconverter.dev/)：免费在线图像转换工具。在您的浏览器中立即在 PNG、JPG、WebP 之间转换图像格式。无需上传 - [更多介绍](https://imageconverter.dev/zh/about)\n\n#### fzero17\n* :white_check_mark: [OpenFolder](https://apps.apple.com/cn/app/openfolder/id6753940577?l=en-GB&mt=12): 在 macOS 菜单栏快速打开常用文件夹\n\n#### suio03 (成都)\n* :white_check_mark: [AI 图像编辑器](https://pixfy.io/)：图像编辑工具套件，集多种功能于一体。从照片质量、放大低分辨率图像、进行创意设计等等\n\n#### grhuang87-hue\n* :white_check_mark: [AI Photo Prompt](https://aiphotoprompt.me)：任何图像转换为详细的 AI 提示词，为 Gemini、Midjourney 和 Stable Diffusion 即时生成照片和图像提示词 - [更多介绍](https://aiphotoprompt.me/about)\n\n### 2025 年 10 月 23 号添加\n#### viga（福建）\n* :white_check_mark: [CSS2TW](https://www.css2tw.online/)：将常规 CSS 转成 Tailwind CSS 的网站\n\n### 2025 年 10 月 22 号添加\n#### melooooooo(北京) - [GitHub](https://github.com/melooooooo)\n* :white_check_mark: [Sora2 Video Studio](https://www.sora2video.blog)：免费 Sora2 视频生成服务，联系我可以赠送积分试用，欢迎反馈建议\n\n### 2025 年 10 月 21 号添加\n#### 何夕2077 (武汉)- [GitHub](https://github.com/justlovemaki)\n* :white_check_mark: [AI 播客生成器](https://podcast.hubtoday.app/)：生成播客音频，支持单人和多人对话。支持原文智能配音 - [GitHub 仓库](https://github.com/justlovemaki/Podcast-Generator)\n* :white_check_mark: [PromptHub提示词管理优化使用工具](https://prompt.hubtoday.app)：AI 提示词管理平台，支持浏览器插件，多平台客户端\n\n#### haocheng - [Github](https://github.com/cabbagehao)\n* :white_check_mark: [GenColoring AI](https://gencoloring.ai)：AI 生成涂色页平台 - [博客介绍](https://blog.csdn.net/weixin_52314137/article/details/152511285)\n* :white_check_mark: [Morse Coder](https://morse-coder.com)：摩斯密码在线转换工具\n\n### 2025 年 10 月 20 号添加\n#### monsoonw(杭州) \n* :white_check_mark: [Free Sora Watermark Adder](https://sorawatermarkadder.online)：为任何视频添加 Sora 水印\n\n#### zhugezifang\n* :white_check_mark: [在线记事本 – 免费在线文本编辑器与笔记分享](https://onlinenotepad101.org/)：在线记事本，用于无干扰写作、记笔记和文本编辑。免费，无需注册，可与他人分享笔记\n\n#### Aris(美国) - [Github](https://github.com/AriesApp)\n* :white_check_mark: [Elisi](https://www.elisiapp.com/)：AI + All in one 个人日程效率软件\n\n#### 阿歪(上海) - [Github](https://github.com/iyhub), [Blog](https://iwhy.dev/)\n* :white_check_mark: [AI Detector](https://gptdetect.ai/)： 检查你的文本是否 AI 生成\n* :x: [Image to Image](https://imagetoimage.app/)： AI 图片编辑\n* :white_check_mark: [Image Describer](https://imagedescriber.cc/)： 利用AI为图片生成智能描述\n* :x: [Liquid Glass HQ](https://liquidglasshq.com/)： 液态玻璃资源收集站\n\n#### nnpyro(武汉) - [Github](https://github.com/nnpyro1/SyncTunnel/), [博客](nnpyro.fwh.is)\n* :white_check_mark: [SyncTunnel](nnpyro.fwh.is)：跨平台高效文件同步和远程管理软件\n\n#### Ting\n* :white_check_mark: [Turbo Learn](https://turbo-learn.com/)：从文档、图片、拼音文件生成笔记的 AI 学习工具网站\n* :x: [nano banana](https://nano-banana.pro/)：AI 驱动的图像编辑器\n* :white_check_mark: [List Difference](https://list-difference.com/)：数据比较工具，它对两个列表执行SET操作，以查找惟一项、交集和联合，提供高效的数据协调\n* :white_check_mark: [ai review generator](https://reviewgenerator.org/)：生成商品评论的 AI 工具\n\n#### Ethan Sunray\n* :white_check_mark: [Sora Watermark Adder](https://sorawatermarkadder.org)：为视频添加专业的 Sora AI 同款水印，浏览器本地完成，无需上传，保护您的隐私，永久免费使用\n\n### 2025 年 10 月 18 号添加\n#### 饭特稀 - [Github](https://github.com/shineforever)\n* :white_check_mark: [Sora Watermark Remover](https://removemark.io)：Sora 视频去水印，5 秒内完成，操作简单\n\n### 2025 年 10 月 17 号添加\n#### Damon986\n* :white_check_mark: [SongGet](https://songget.com/)：多合1的音乐下载软件，可从 Amazon, YouTube, Apple, Spotify, SoundCloud, Line, Tidal, Deezer 等音乐流媒体平台下载高质量音乐，支持批量下载\n* :white_check_mark: [Moyea Downloader](https://www.moyeasoft.com/downloader/)：多合1的视频下载软件，可从 Amazon Prime, YouTube, Apple TV+, Instagram, TikTok, Facebook, Twitter/X, Disney+, Netflix, Hulu 等视频流媒体平台下载点播视频与直播视频，支持批量下载\n\n#### samtts(杭州) - [Github](https://github.com/samtts-voice)\n* :white_check_mark: [SAM TTS](https://samtts.com/)：微软 SAM 语音合成工具，重现经典 Windows XP 系统的标志性机器人语音，支持浏览器直接使用无需下载\n* :white_check_mark: [AI Hairstlye Changer](https://aihairstylechanger.net/)：AI 发型虚拟试换工具，上传照片即可在线试戴 50+ 种发型和 30+ 种发色，帮助用户找到完美造型\n* :white_check_mark: [顔文字屋](https://www.kaomojiya.org/)：颜文字网站，提供丰富的表情符号分类（哭泣、开心、生气等），一键复制即可在聊天软件中使用\n\n#### indiehack(北京) - [Github](https://github.com/aitoolcentert-del)\n* :white_check_mark: [Image Inverter](https://imageinverter.app/) ： 图片颜色反转工具，可将黑色转为白色、创建照片负片效果,无需注册即可在浏览器中即时处理\n* :x: [Circle Crop Image](https://circle-crop-image.net/)：圆形裁剪工具，可快速制作完美的圆形头像和社交媒体图片,支持透明背景导出\n* :white_check_mark: [Grayscale Image](https://grayscaleimage.org/)：图片灰度转换工具，可将彩色照片转为黑白灰度图像,适合制作复古效果和减小文件大小\n\n### 2025 年 10 月 16 号添加\n#### lanmo(武汉) - [Github](https://github.com/oddboy0152-create)\n* :white_check_mark: [Veo 3.1 AI](https://veo3-1.co/zh)：使用 Veo3.1 创作电影级视频，配备 1080p 原生音频、首尾帧控制及免费试用额度\n\n### 2025 年 10 月 15 号添加\n#### oddboy(杭州) - [Github](https://github.com/liuShuZhu), [博客](http://www.oddboy.top)\n* :white_check_mark: [Sora2 AI](https://sora2-ai.net/)：体验 Sora 2 视频生成 – 创建 1080p 无水印视频，配备同步音频\n\n### 2025 年 10 月 14 号添加\n#### xiaobin(北京) - [Github](https://github.com/pangxiaobin)\n* :white_check_mark: [灵象工具箱](https://www.lingxiangtools.top/)：AI 智能图像处理工具，视频抠图换背景、视频去水印、AI抠图、智能擦除、截图美化、OCR文字识别、在线拼图、视频智能镜头分割、图片压缩、图片格式转换，几乎所有功能都支持批量操作，不限制文件数量和大小（支持 win 和 mac 平台，所有处理都是本地模式保证用户隐私） - [更多介绍](https://www.lingxiangtools.top/#features)\n\n### 2025 年 10 月 12 号添加\n#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)\n* :white_check_mark: [Bulk Resize Images Online](https://bulkresizeimages.online/)：批量调整多张图片的大小。快速、安全，完全在浏览器中运行——无需上传 - [更多介绍](https://bulkresizeimages.online/zh/about)\n\n#### sing1ee(上海) - [Github](https://github.com/sing1ee)\n* :x: [Sora Video Downloader](https://soravideodownloader.com/)：从共享链接下载 Sora AI 生成的视频。获取原始提示和高质量视频文件\n\n### 2025 年 10 月 10 号添加\n#### Leo(成都) \n* :white_check_mark: [Gemini Storybook Gallery](https://geministorybook.gallery/)：Gemini Storybook 汇总，分类，保留原生的交互式阅读体验\n\n#### Ethan Sunray\n* :white_check_mark: [TO MD](https://tomd.io)：将 Word、PDF、表格、演示、网页、图片、音频、压缩包、代码、RSS 和网址转成结构化的 Markdown，秒级转换，无需注册，长期免费，注重隐私与安全。\n\n#### Archer(北京)\n* :white_check_mark: [AI照片渲染](https://www.aimage.top/)：🔥上传任意照片就能快速生成各种风格的头像，轻松满足所有社交平台的头像需求\n\n### 2025 年 10 月 9 号添加\n#### 黑查理(长沙) - [Github](https://github.com/clhey), [博客](https://ruanzhubao.com)\n* :white_check_mark: [软著宝](https://ruanzhubao.com)：AI 生成全套软著材料（包括 8 张软件截图、详细图文文档鉴别材料、60 页原创源代码等）- [更多介绍](https://ruanzhubao.com/blogs/ruanzhubao-shuomingshu)\n\n### 2025 年 10 月 7 号添加\n#### Ryan\n* :white_check_mark: [图像去模糊](https://unblurimg.ai/)：用人工智能技术消除图像模糊，恢复清晰度和细节。即时提升照片清晰度，修复模糊照片，提高分辨率\n\n#### Jali - [Github](https://github.com/qqxufo)\n* :white_check_mark: [NanaVis](https://nanavis.com/zh)：Nano Banana 驱动的 AI 图片编辑工具\n\n### 2025 年 10 月 5 号添加\n#### Leon(杭州)\n* :white_check_mark: [AI-NanoBanana](https://www.ai-nanobanana.net/)：AI 图像工作室，让你轻松把创意变成高质量视觉作品\n\n### 2025 年 10 月 4 号添加\n#### pillow(重庆)\n* :white_check_mark: [Teleprompter](https://teleprompteronline.org)：在线提词器，适用于视频创作者、演讲者和教育工作者\n\n#### 詹姆斯 周\n* :white_check_mark: [sora2ai.ai](https://sora2ai.ai)：最新的 AI 视频生成模型。创建具有同步音频、对话和效果的逼真且物理准确的视频。\n\n#### fanison(北京)\n* :white_check_mark: [NanoImg](https://nanoimg.net/)：基于 Nano Banana 的 AI 图像引擎，带来简单高效的图片编辑体验。上传图片，输入需求，即刻生成你想要的视觉效果。\n\n### 2025 年 10 月 2 号添加\n#### SUNJL（长春）：\n* :white_check_mark: [AI Lyrics Generator](https://ai-lyrics-generator.net/)：AI 歌词生成 & 改进\n\n#### Margox(北京) - [Github](https://github.com/margox)\n* :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)：清新易用的宠物陪伴管家，包含宠物档案、图文日记、消费记账等功能\n\n### 2025 年 10 月 1 号添加\n#### Yuzu-Peel(北京) - [Github](https://github.com/Yuzu-Peel)\n* :white_check_mark: [Beardstyle AI](https://beardstyle.org/)：虚拟试戴胡子\n\n### 2025 年 9 月 29 号添加\n#### pandaupup(广州) - [Github](https://github.com/pandaupup)\n* :white_check_mark:  [实用小工具：时间格式转换和计算器](https://time-to-decimal.org/)：支持时分秒格式和小数表示法双向转换、分钟/秒/天不同单位相互转换、考勤打卡时间四舍五入，工资计算等\n\n#### LongZi(深圳)\n* ⏳ [跟我学太极-陈式](https://github.com/dream-approaching/taijiMini)：微信小程序，图文+视频呈现八法五步、八段锦、陈式太极拳等内容，旨在推广太极拳文化\n\n#### 0x4c48 - [Github](https://github.com/LoHhhha)\n* :x: [PMoS](https://pmos.lohhhha.cn)：神经网络模型可视化定义平台 - [更多介绍](https://github.com/LoHhhha/pmos_nn)\n\n#### zxcHolmes\n* :white_check_mark: [Git Stars](https://git-stars.org/)：发掘最热门，Stars 数最多的 GitHub 开源项目仓库\n\n#### anywhereto(beijing) - [Github](https://github.com/anywhereto)\n* :white_check_mark: [scream ai](https://screamai.art//)：把你的自拍照转化为电影感十足的千禧年（Y2K）恐怖风照片\n\n#### pandaupup - [Github](https://github.com/pandaupup)\n* :white_check_mark: [在线 GPU 性能测试网站 - 毒蘑菇显卡测试](https://volumeshaderbm.org/benchmark)：在浏览器里运行3D体积着色器测试GPU渲染能力。实时显示压测性能数据：包括实时的帧率（FPS）、帧时间（Frame Time）和显卡型号。可多渠道分享测试结果，用户点击可使用相同参数进行渲染测试。\n\n### 2025 年 9 月 28 号添加\n#### anywhereto(beijing) - [Github](https://github.com/anywhereto)\n* :white_check_mark: [banana nana ai](https://bananananoai.net/)：AI 图片工具, AI 换脸，AI 清除背景， AI y2k 风格人像\n\n#### elng12(柳州) - [Github](https://github.com/elng12)\n* :white_check_mark: [Image to Pixel Art](https://pixelartvillage.org/)：图像到像素艺术转换器 – 通过即时预览和调色板控件将 PNG 或 JPG 图像转换为像素艺术，并进行图像到像素的转换帮我生成跟图像那样的\n\n#### ljxyaly(深圳) - [Github](https://github.com/ljxyaly)\n* :white_check_mark: [PDFLance](https://www.pdflance.com)：PDF 工具集，全部在浏览器里本地运行。你的文件不会被上传到其他地方。免费合并，拆分，编辑，转换 PDF，我们重视您的隐私\n\n### 2025 年 9 月 27 号添加\n#### PopcornBoom(深圳) - [Github](https://github.com/POPCORNBOOM), [Bilibili](https://space.bilibili.com/271218438)\n* :white_check_mark: [EZHolo](https://github.com/POPCORNBOOM/EZHolodotNet/releases/latest)：轻易从照片和其他平面图像创建手工绘制或机器打印的刮擦全息路径 - [更多介绍](https://github.com/POPCORNBOOM/EZHolodotNet)\n\n#### 虾米 - [博客](https://blog.2pp.link)\n* :white_check_mark: [opus to mp3](https://opustomp3.online)：免费在线音乐格式转换网站。支持全球各地多个语言，免费使用、无需注册、无需下载 APP 即可使用、方便快捷是我们的口号。专为 opus 格式转换 mp3 而生，让每一个人都能听到声音\n\n### 2025 年 9 月 26 号添加\n#### 皮皮卡\n- :white_check_mark: [Watermarkzero](https://watermarkzero.com/)：AI 免费去除图片水印。擦除您照片上多余的水印、文字或标志。它并非仅仅涂抹或模糊水印，而是智能地重建水印后方的背景。 最终呈现的是一张完美干净、自然的照片，仿佛水印从未存在过\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n- :white_check_mark: [Free AI for Everyone](https://free.stockai.trade)：无需登录、完全免费的 AI（模型包括 Grok 4 Fast、DeepSeek V3.1 等）。可选择的模型以后可能会有所调整，但这个服务会长期提供，并且完全免费\n\n### 2025 年 9 月 25 号添加\n#### 皮皮卡\n* :white_check_mark: [AI Image Editor](https://aiimageeditor.photos/)：通过文字指令编辑你的照片，AI 图像编辑器是一款由提示词驱动的智能新一代工具，它能让您使用自然语言编辑照片——无需像传统照片编辑器那样进行复杂的手动操作\n\n### 2025 年 9 月 24 号添加\n#### Ryan10Yu - [Github](https://github.com/Ryan10Yu)\n* :white_check_mark: [Image to Image AI](https://imagetoimage.tech/)：基于 AI 的图片修改和重绘工具\n\n#### pillow(重庆) \n* :white_check_mark: [赛博朋克AI](https://cyberpunkai.art)：将任意照片转换为令人惊叹的赛博朋克杰作\n* :white_check_mark: [反应速度测试](https://reaction-time-test.online)：快速测试你的反应速度\n* :white_check_mark: [鼠标灵敏度转换](https://sens-converter.online)：将你熟练的鼠标灵敏度进行转换\n* :white_check_mark: [色盲检测](https://color-blindness-test.com)：测试你是否是色盲 \n\n#### BOS1980 - [Github](https://github.com/BOS1980)\n* :white_check_mark: [GPU 性能测试工具](https://www.volumeshader.dev/)：检测显卡性能。测试和评估你电脑显卡（GPU）的3D渲染性能。目标用户：想要了解自己电脑显卡3D渲染能力、对比不同设备性能，或者开发者需要测试WebGL渲染效果的人群\n\n#### iam-tin - [Github](https://github.com/iam-tin)\n* :white_check_mark: [White Pic - 白色背景图片](https://whitepic.online)：下载任意分辨率白色背景图片\n\n### 2025 年 9 月 23 号添加\n#### Sean(成都) \n* :white_check_mark: [Mushroom Identification](https://mushroomidentification.online)：蘑菇 AI 识别工具（快速、准确)，结果包含毒性、高危相似种警告\n\n### 2025 年 9 月 22 号添加\n#### 萝卜卜(南昌)\n* :white_check_mark: [WheelPage - 在线转盘](https://wheelpage.com/zh/)：在线转盘，支持抽奖、游戏和快速决策（简洁好用）\n\n#### Horace - [Github](https://github.com/lianhr12)\n* :white_check_mark: [SmartCV](https://smartcv.cc)：AI 智能简历制作平台，提供简历模板、AI优化建议、多种格式导出等功能\n\n### 2025 年 9 月 19 号添加\n#### 嗡嗡鱼 - [Github](https://github.com/kindtree)\n* :white_check_mark: [SimpleThumbnail](https://simplethumbnail.com)：YouTube 视频缩略图下载工具（免费)，支持多分辨率提取，界面简洁无广告\n* :white_check_mark: [YouTubeTitles](https://youtubetitles.com)：YouTube 标题生成器（AI 驱动），提供快速模式与进阶模式，助力提升视频点击率\n\n\n#### xmm（东莞） - [Github](https://github.com/XMM17879829028)\n* :white_check_mark: [Mental Age Test](https://mentalage.org)：心理年龄测试工具，通过科学量表评估用户心理年龄与实际年龄的对比，提供详细且有趣分析报告\n\n#### NINGSHIQI(深圳)\n* :white_check_mark: [NanoEditor](https://nanoeditor.app/)：对话式 AI 生图平台\n\n### 2025 年 9 月 17 号添加\n#### Red - [Github](https://github.com/CrisChr/json-translator), [博客](https://red666.vercel.app/)\n* :white_check_mark: [JSON Translator](https://jsontrans.fun)：国际化（i18n）翻译工具（为前端开发者打造），上传 json 文件，通过 AI（支持 DeepSeek、Gemini、OpenAI、Anthropic）翻译后直接导出 json，支持 70+ 个国家语言，助力产品出海\n\n#### sing1ee - [Github](https://github.com/sing1ee)\n* :white_check_mark: [Foto Miniatur](https://fotominiatur.com/)：nano banana 图片生成器，提供常用 prompt\n\n#### 饭特稀\n* :white_check_mark: [Thumbnail Downloader](https://thumbnaildownloader.cc)：下载视频网站封面的工具，支持 Youtube，Facebook，Ted，支持网站在逐步添加中\n\n### 2025 年 9 月 15 号添加\n#### 小金子(杭州) - [Github](https://github.com/xiaojinzi123), [博客](https://blog.csdn.net/u011692041)\n* :white_check_mark: [一刻记账](https://yike.icxj.cn/)：纯净的记账 App - [更多介绍](https://github.com/xiaojinzi123/yike-app)\n\n#### yangjuzi - [Github](https://github.com/yangjuzi)\n* :white_check_mark: [版权符号](https://copyrightsymbol.app/)：版权符号的网站，可以复制版权符号及相关的符号©, ®,℗, and ™. ，生成页面footer的版权，版权符号的各种css、alt code、怎么输入在windows、mac、iphone，在word、excel中输入\n\n#### Corey（深圳） - [Github](https://github.com/iamcorey)\n* :white_check_mark: [Seedream AI](https://seedreamai.run/)：Seedream AI 4.0 AI 图片生成器（最新，免费）\n* :white_check_mark: [DR Checker](https://drchecker.org/)：检查并展示任何网站的 Domain rating，并且一键生成可展示的DR徽章\n\n#### Ronny（深圳）\n* :white_check_mark: [Vidgo AI](https://vidgo.ai)：一站式的图片，视频生成平台\n* :x: [Video Translator](https://videotranslator.io/)：短剧视频翻译工具\n* :white_check_mark: [Doculator](https://doculator.org/)：集文档，视频，图片翻译于一身的平台\n\n\n### 2025 年 9 月 14 号添加\n#### 饭特稀\n* :white_check_mark: [去掉图片里的文字](https://textremoverfromimage.com/)\n\n### 2025 年 9 月 12 号添加\n#### OD-Ice(深圳) - [Github](https://github.com/OD-Ice)\n* :white_check_mark: [Verbord](https://apps.apple.com/us/app/verbord-private-voice-diary/id6751261198)：录音笔记 iOS 应用(纯净、私密），帮你轻松记录生活点滴和创作灵感\n\n#### licon(深圳) - [Github]( https://github.com/licon)\n* :white_check_mark: [EZQuiz](https://ezquiz.online)：AI 智能实时测验，让你快速创建、分享并与观众通过实时互动测验进行互动\n* :white_check_mark: [EZ-translate](https://chromewebstore.google.com/detail/ahlibmildbganmkdhokbkfanpaakpgfd?utm_source=item-share-cb)：AI 浏览器翻译插件(免费)，支持页面内翻译，截图翻译，自动检测语言 - [开源仓库](https://github.com/licon/llm-translate)\n\n#### 饭特稀 - [Github](https://github.com/shineforever)\n* :white_check_mark: [SiteData](https://sitedata.dev)：网站流量与 AdSense 反查工具(免费)，无需登录即可使用 - [Chrome 浏览器插件](https://chromewebstore.google.com/detail/emeakbgdecgmdjgegnejpppcnkcnoaen)\n\n#### Ryan - [Github](https://github.com/Ryan10Yu)\n* :white_check_mark: [AI Song](https://aisong.tech/)：AI 生成歌曲、歌词的音乐网站\n\n### 2025 年 9 月 11 号添加\n#### ai77 - [网站](https://www.ai77.dev)\n* :white_check_mark: [AI 赛事通](https://www.competehub.dev/zh)：全球 AI 竞赛聚合平台，收录涵盖数据算法竞赛、AI 大模型竞赛、AI Agent 挑战赛、工程开发竞赛等多个领域，让你不会错过任何一场 AI 赛事，提升技能，赢取奖金\n\n#### Carys - [Github](https://github.com/Caron77ai)\n* :white_check_mark: [AIToolsss](https://www.aitoolsss.com/)：AI 工具导航，收录全球 AI 产品与应用\n\n### 2025 年 9 月 10 号添加\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [Proxied Web from URL](https://web.818233.xyz)：代理服务器，完全免费，把任何网址放在 https://web.818233.xyz/ 后面，这个新的网址就可以作为代理服务器获取原网站的内容，目前只支持内容获取，不支持网站交互操作。\n\n#### George(北京) \n* :white_check_mark: [AI miniatur](https://aiminiatur.org/)：将照片转换为 AI 手办模型\n\n#### godow(杭州) - [Github](http://github.com/godow),\n* :white_check_mark: [1desk](https://www.1desk.app/zh-CN)：您的私人订制在线桌面：可添加多个页面空间，每个页面空间可添加并自定义卡片位置与尺寸，添加多种卡片如笔记本、Rss、书签、自定义搜索引擎等 - [更多介绍](https://www.1desk.app/zh-CN)\n\n#### Susu(南京) - Github\n* :white_check_mark: [Backlink Manager](https://backlinkmanager.net)：专注于外链提交管理、SEO 问题检测及权重提升\n\n### 2025 年 9 月 8 号添加\n#### asui(泉州市) - [Github](https://github.com/xingxingc/stray_avatar)\n* :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)   \n\n#### 景彬(武汉) - [Github](https://github.com/youlookwhat)\n* :white_check_mark: [所思笔记](https://apps.apple.com/cn/app/id1668533045)：日有所思夜有所梦，记录白天的所思和晚上的梦。\n\n#### xbaicai0 - [Github](https://github.com/xbaicai0)\n* :x: [Discordtags](https://discordtags.net)：使用高级标签查找 Discord 服务器，浏览游戏、学习小组、创意社区。通过智能标签发现符合您兴趣的服务器。\n\n#### wangbing-coder - [Github](https://github.com/wangbing-coder)\n* :x: [AI 驱动的智能图片描述生成器](https://image-describer.org/)：提交任意图片，生成对这张图片的详细描述文字\n\n#### leah626888 - [Github](https://github.com/leah626888)\n* :white_check_mark: [Pixel Art Generator](https://imgtopixel.art/)：像素画生成器，将任意图片一键转换为复古风格的像素艺术，支持 JPG、PNG、WebP、GIF、BMP、TIFF 等多种格式，你可以自定义像素尺寸、颜色数量、调色板风格（如 Pico-8、Game Boy、NES 等），还可实时预览转换效果，轻松下载高质量像素画，适合用于社交媒体、游戏、周边设计等场景。\n\n### 2025 年 9 月 7 号添加\n#### Prompt2Tool - [Github](https://github.com/prompt-2-tool)\n* :white_check_mark: [AI 驱动的免费在线工具平台](https://prompt2tool.com/)：提供 300+ 实用工具，无需注册即可使用\n\n### 2025 年 9 月 6 号添加\n#### ljxyaly(深圳) - [Github](https://github.com/ljxyaly)\n* :white_check_mark: [PDF 编辑器](https://pdf-editor.uyidev.com)：简易的 PDF 编辑器\n* :white_check_mark: [GIF 助手](https://gif.uyidev.com)：GIF 合并与分解\n\n#### Jazz Jay\n* :white_check_mark: [AI ASMR视频生成器](https://asmrvideo.ai)：AI ASMR视频生成器（采用先进 Veo3 技术）\n\n#### Jammy(上海) - [Github](https://github.com/chenminjie24)\n* :white_check_mark: [AI Miniatur](https://aiminiatur.com/)：一键制作微缩模型的 AI 图片网站，用户不需要操心提示词，通过预制的提示词模板能快速制作微缩模型图片。\n\n#### tianqi - [Github](https://github.com/allenalston)\n* :white_check_mark: [Imagable AI](https://imagable.ai/)：人工智能 图片编辑和生成工具，用户可以不需要设计的技术即可通过提示词一键生成和编辑照片或图片。\n\n### 2025 年 9 月 5 号添加\n#### Jazz Jay\n* :white_check_mark: [Runway Aleph](https://runwayaleph.net/)：人工智能 视频编辑平台，用简单的文本提示转换视频内容。用户可以在几分钟内添加/删除对象，生成新的相机角度，应用风格转移，并修改具有专业质量结果的照明\n\n#### Galen Dai - [Github](https://github.com/galendai)\n* :white_check_mark: [Copy My Text](https://www.copymytxt.com)：将你的 Markdown 文本秒变海报或短链，安全、优雅地分享。\n\n#### leftshine(成都) - [Github](https://github.com/leftshine), [gitee](https://gitee.com/leftshine)\n* :white_check_mark: [APKExport](https://github.com/leftshine/APKExport)：APK 导出工具，可以非常方便的导出和分享 apk 文件 - [更多介绍](https://leftshine.gitlab.io/apkexport)\n\n\n### 2025 年 9 月 4 号添加\n#### AprDeci - [Github](https://github.com/AprDeci)\n* :white_check_mark: [OnePractice](https://moon.onepractice.top)：在线英语四六级真题网站\n\n#### Ethan Sunray\n* :white_check_mark: [Brave Pink Hero Green](https://bravepinkherogreen.com)：用粉色和绿色双色调照片滤镜美化照片。处理快速、私密，并且完全在您的浏览器中完成。\n\n### 2025 年 9 月 3 号添加\n#### wbshm(泉州)\n* :white_check_mark: [三角形简易计算器](https://wbshm.github.io/show/mini_triangle/mini_triangle.html)：输入任意三个参数（边长、角度）既可以绘制出对应的三角形，并计算出其他的参数。欢迎体验和吐槽\n\n### 2025 年 9 月 2 号添加\n#### Jay6343 - [Github](https://github.com/Jay6343)\n* :white_check_mark: [nanobanana.co](https://nanobanana.co/)：Nanobanana.co 是革命性的人工智能图像编辑平台，通过智能文本驱动编辑改变创意工作流程。无论您是数字艺术家，内容创作者还是营销专业人士，每次都可以零学习曲线和完美结果体验 AI 图像编辑的未来。\n\n### 2025 年 9 月 1 号添加\n#### JR(深圳) \n* :white_check_mark: [对话翻译器](https://www.talk-translator.com)：将你的耳机变成实时翻译器，支持双语实时语音自动翻译、AI对话问答你的翻译记录\n\n#### Carol(广州) - [Github](https://github.com/carolgryman-sudo)\n* :white_check_mark: [Nano Banana AI](https://nanobanana-ai.net)：基于市面上最强的 AI 图像编辑模型 Nano Banana 开发的图片编辑器，用嘴改图、保持角色一致性、控制细节、图片融合\n\n#### yiquan00 - [yiquan00](https://github.com/yiquan00)\n* :white_check_mark: [LaunchitX](https://launchitx.com)：新产品(创意)启动平台，适合新产品宣发\n\n#### noGeek（北京）\n* :white_check_mark: [DR checker](https://drchecker.net) ：免费/域名等级 Domain rating 检测工具\n\n### 2025 年 8 月 31 号添加\n#### FlickerMi - [Github](https://github.com/FlickerMi)\n* :white_check_mark: [Nano Banana](https://usenanobanana.com)：Nano Banana 使用谷歌最新AI技术，提供角色一致性保持、自然语言编辑、多图融合等强大功能。无论是人物换装、场景变换还是精准局部编辑，都能保持原有特征，让您的创意无限可能。\n\n#### laine001（杭州） - [Github](https://github.com/laine001)\n* :white_check_mark: [信息系统项目管理师重点总结itpm](https://www.itpmp.cc/)：信息系统项目管理师高项的知识总结与记录网站，持续更新，软考的部分朋友可用\n\n### 2025 年 8 月 29 号添加\n#### 疯狂的小波(武汉)\n* :white_check_mark: [Nano Banana AI 图像编辑器](https://picir.ai/)：基于最先进的 AI 图像编辑模型 Nano Banana 开发的图片编辑器，用嘴改图、保持角色一致性、控制细节、图片融合\n\n### 2025 年 8 月 28 号添加\n#### david_bai(武汉) - [Github](https://github.com/david-bai00/PrivyDrop), [博客](https://www.privydrop.app/blog)\n* :white_check_mark: [PrivyDrop](https://www.privydrop.app)：开源简单易用的 P2P 文本文件传输工具网页，支持传输任意大小的文件 - [更多介绍](https://www.privydrop.app/features)\n\n#### iam-tin - [Github](https://github.com/iam-tin)\n* :white_check_mark: [Flower Drawing 花卉绘画](https://flowerdrawing.site/)：专注于花卉绘画的网站，有不同的花的种类可以选择，只要你用语言描述出样子，你可以画任何的花卉。\n* :white_check_mark: [Fish Drawing 鱼类绘画](https://fishdrawing.site/)：专注于画各种鱼的网站，你可以随心所欲画出任何你想画的鱼的图片。\n\n### 2025 年 8 月 27 号添加\n#### flingyp(上海) - [Github](https://github.com/flingyp)\n* :white_check_mark: [简链](https://www.cvlinkhub.online/)：打造个性化简历，赢得理想工作\n\n#### 小灰雀(北京)\n* :white_check_mark: [EzWebp](https://www.ezwebp.com/)：视频转动图（WebP/GIF）在线工具，本地执行，数据安全。\n\n#### Nico(长沙) - [Github](https://github.com/yijianbo)\n* :white_check_mark: [TimeGuessr](https://timeguessr.online/)：给你一张图片，让你猜测图片发生的时间和地点。我们把 Timeguessr 的玩法原封不动地搬了过来，只是把图库换成了另一批“假照片”——全部由 AI 生成的过去 50 年里可能发生的瞬间\n\n### 2025 年 8 月 26 号添加\n#### Lizer(重庆) - [Github](https://github.com/Loverz55)\n* :white_check_mark: [数字生命管](https://news.lizer.cc/)：抖音热搜时间轴， 一小时自动抓取一次，通过工作流全网搜关于这个事件的时间线，然后  AI 梳理，AI 配图\n\n### 2025 年 8 月 25 号添加\n#### 北纬27度\n* :white_check_mark: [ARR (Annual Recurring Revenue) （年度经常性收入）排行榜](https://arrfounder.com)：爬取了全网公开的 ARR 营收数据做的 founder ARR 榜单，会定期更新，感兴趣的朋友可以看看，说不定你也在这份榜单上面\n\n#### YILS-LIN - [Github](https://github.com/YILS-LIN)\n* :white_check_mark: [AI Short Video Factory - 短视频工厂](https://github.com/YILS-LIN/short-video-factory)：一键生成产品营销与泛内容短视频，AI批量自动剪辑，高颜值跨平台桌面端工具\n\n#### AskTao - [Github](https://github.com/ask-tao)\n* :white_check_mark: [Image Splitter](https://github.com/ask-tao/image-splitter)：图集拆分工具。帮助`游戏开发者`或`UI设计师`快速、方便地从一张雪碧图 (`Sprite Sheet`) 中，提取出所有独立的精灵icon资源，或按网格分割图片得到其切片。平台支持：mac/win/linux/web\n\n### 2025 年 8 月 24 号添加\n#### hackun666 - [Github](https://github.com/hackun666)\n* :white_check_mark: [AI 软著生成器](https://ruanzhu.pro)：AI 快速生成软件著作权（软著）申请所需的文档材料\n\n### 2025 年 8 月 23 号添加\n#### 辣条（北京）\n* :white_check_mark: [picture to drawing](https://picturetodrawing.org/) ：图片转手绘风格网站（免费/无需注册）\n\n#### SUOWU(杭州) \n* :white_check_mark: [morse code translator](https://morsecodetranslator.best/)：摩斯码翻译器，用来将英文或者日语转为摩斯码，有可视化功能\n\n### 2025 年 8 月 22 号添加\n#### monsoonw(杭州)\n* :white_check_mark: [Free Qwen Image Edit AI](https://qwen-image.co)：Qwen Image Edit 网站。高级 AI 图像编辑与完美文本渲染，完美支持中英文文本渲染。\n\n### 2025 年 8 月 21 号添加\n#### kajian(广州)\n* :white_check_mark: [codebox-有趣的二维码平台](https://www.codebox.club)：超萌的免费二维码生成器，每一个二维码都有故事\n\n#### 林悦己(杭州) \n* :white_check_mark: [Chat Recap AI](https://chatrecap.io)：揭示你對話中隱藏的模式、情緒與紅旗，讓你真正理解你的關係\n\n#### BOS1980\n* :white_check_mark: [Soulmate Sketch｜AI 灵魂伴侣素描（占星画像生成）](https://soulmatedrawing.live)：用 AI + 占星，为你生成专属的黑白手绘风格“灵魂伴侣画像”；10–20 秒极速呈现，多语言网站，移动端友好\n\n#### nogeek (杭州)\n* :white_check_mark: [初创公司到初创公司](https://startuptostartup.com)：免费的发布站 & 目录站\n\n#### Lingglee - [Github](https://github.com/lingglee)\n* :white_check_mark: [Avif2Png](https://avif2png.com/)：Avif 转 PNG 工具站\n\n#### Honwhy Wang - [Github](https://github.com/honwhy)\n* :white_check_mark: [公众号阅读增强器](https://wxreader.honwhy.wang/)：让微信公众号阅读体验更舒适，自动生成文章目录，优化图片查看，让阅读长文不再迷失，提升浏览体验 - [更多介绍](https://github.com/honwhy/WeChatReaderEnhancer)\n\n### 2025 年 8 月 19 号添加\n#### Panda (深圳)\n* :white_check_mark: [薪资跳动](https://money-dance.com/)：记录工作和摸鱼的微信小程序，可以实时显示当天收入和进度，可以记录和统计摸鱼多少分钟赚了多少钱，还有各种维度的数据统计和可视化。\n\n#### tanchaowen84（深圳） - [Github](https://github.com/tanchaowen84)\n* :white_check_mark:  [Voice Clone - AI 驱动的语音克隆平台](https://voice-clone.org)：用户只需录制或上传一段音频，系统便能在几秒内生成一个属于用户自己的声音模型。支持任意文本的语音生成，听起来自然流畅，几乎接近真人语音。整个流程无需复杂设备，也不需要技术背景，真正实现“用几句话训练出自己的声音” - [GitHub 仓库](https://github.com/tanchaowen84/voice-clone)\n\n### 2025 年 8 月 17 号添加\n#### xibobo(上海) - [Github](https://github.com/my19940202)\n* :white_check_mark: [CelebShout](https://www.celebshout.online/zh)：AI 生成明星语音为你街头吆喝带货\n\n#### ftp2010字(北京) - [Github](https://github.com/ftp2010)\n* :white_check_mark: [mypassrecovery](https://www.mypassrecovery.com)：如果您的 word、pdf、rar 等文档的密码忘记了，这个网站可以帮你找回\n\n### 2025 年 8 月 15 号添加\n#### Selenium39(广州) - [Github](http://github.com/Selenium39)\n* :white_check_mark: [原牛](https://mihoyonb.com)：一站式自媒体工具平台\n\n#### BHznJNs\n* :white_check_mark: [狸语字幕助手](https://apps.microsoft.com/store/detail/9PFLDTV29JFV?cid=DevShareMCLPCS)：让你不开麦也能在直播时“开口”互动的小工具\n\n#### fzero17\n* :white_check_mark: [AA小助手](https://apps.apple.com/app/6749556847)：AA 小助手，一键算清谁该付多少，轻松告别手动算错。\n\n### 2025 年 8 月 14 号添加\n#### 出逃向量(杭州)\n* :white_check_mark: [微信小程序-途搭](https://github.com/user-attachments/assets/2437a6c4-b21b-4f00-a7a3-cc8b245106ae)：徒步者的装备搭配系统，可以查看想去路线他人的搭配和热门装备\n\n### 2025 年 8 月 13 号添加\n#### Ethan Sunray\n* :white_check_mark: [Wplace Tool](https://wplacetool.com)：基于浏览器的工具集，帮助 wplace.live 玩家设计像素艺术、匹配官方调色板颜色、监控服务器状态，并协调团队构建\n\n### 2025 年 8 月 12 号添加\n#### jammy24 - [Github](https://github.com/chenminjie24)\n* :white_check_mark: [PromptArk](https://promptark.net/)：帮助用户优化提示词，用户输入简单的提示词，AI 辅助生成更结构化，更详细的提示词\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [LLM from URL](https://818233.xyz/)：通过网址直接使用大模型，完全免费，只需把提问放在 [818233.xyz](https://818233.xyz/) 之后作为新的网址即可获得大模型的回答，支持中文，也支持从 Linux/Mac 终端通过 wget 调用\n\n#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)\n* :white_check_mark: [TweetCloner](https://tweetcloner.com/)：为使用 X/Twitter 设计的创意工具。克隆任何推文创意，翻译或再创作，将其改造成你自己的全新原创内容，再发布到 X/Twitter\n\n#### heyjude(上海）- [Github](https://github.com/heyjude1817)\n* :white_check_mark: [MP3TO](https://www.mp3to.cc): mp3 格式转换工具网站\n* :white_check_mark: [MP4TO](https://www.mp4to.cc): mp4 格式转换工具网站\n\n### 2025 年 8 月 8 号添加\n#### lio(广东) - [Github](https://github.com/31702160136/ComfyUI-GrsAI)\n* :white_check_mark: [GrsAi](https://grsai.com/)：GrsAI 国外主流 AI 模型 API 平台。提供价格便宜（全网最低价）稳定的 GPT-4o、Gemini、Flux 和 Veo3 AI API，GPT-4o 图像生成仅需 0.02 一张图\n\n#### Leochens(北京)\n* :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)：可以在状态栏调起的小本本，查看备忘或者速记灵感，不需要回到主页面，在任何屏幕上方都可以直接调起。支持富文本编辑、快捷键调出。\n\n#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks), [博客](https://indietion.com/)\n* :white_check_mark: [WebsiteScreenshot.online](https://websitescreenshot.online/)：免费在线网站截图工具。支持 PNG、JPEG、PDF 格式，支持自定义分辨率，支持移动端和桌面端视图。无需注册，立即使用！ - [更多介绍](https://websitescreenshot.online/zh-CN#features)\n\n#### monoonw(杭州)\n* :white_check_mark: [Discord Timestamp Generator](https://discordtimestampgenerator.net)：简化了在 Disord 中创建特殊格式信息的过程，这些信息会以每个查看者的当地时区显示日期和时间，从而使跨时区的活动协调变得更加容易。\n\n### 2025 年 8 月 4 号添加\n#### 何夕2077 (武汉)- [GIthub](https://github.com/justlovemaki), [小宇宙](https://www.xiaoyuzhoufm.com/podcast/683c62b7c1ca9cf575a5030e)\n* :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)。\n\n### 2025 年 8 月 3 号添加\n#### nogeek(南京)\n* :white_check_mark: [The One Startup](https://theonestartup.com)：每个小产品都是一个小公司，发现一些小公司，让每个小产品都有被发现的机会\n\n#### feiyu(北京) \n* :white_check_mark: [AI剪影生成器](https://silhouettegenerator.app/)：免费 AI 剪影生成器，瞬间将任何照片转换为令人惊艳的剪影\n\n### 2025 年 8 月 2 号添加\n#### gemoonly - [Twitter](https://x.com/gell_moon)\n* :white_check_mark: [Neetoo](https://apps.apple.com/cn/app/neetoo/id6743790550?mt=12)：上班摸鱼小说阅读器，可以在工作之余尽情的阅读小说，不用担心被发现（macOS，可隐藏）\n\n#### Jay6343 - [Github](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-3138860512)\n* :white_check_mark: [AI 亲吻视频生成器](https://kissingai.app/)：用 AI 基于照片创建逼真的接吻视频，从多种亲吻风格中选择，如法式亲吻或雨中亲吻\n\n### 2025 年 7 月 31 号添加\n#### biboom(广州) \n* :white_check_mark: [smartimagix](http://smartimagix.cloud)：用 AI 修改图片\n\n#### tushenmei(杭州) \n* :white_check_mark: [Green Screen Remover 免费一键抠图](https://greenscreenremover.online/)：手动抠图太慢太烦？我们都懂。免费AI背景抠图网站，释放你的创作力\n\n### 2025 年 7 月 30 号添加\n#### Flicker(成都)\n* :white_check_mark: [AI LRC Generator](https://ailrcgenerator.com/)：AI LRC Generator 使用 AI 技术一键生成音频 LRC 文件！支持自动识别音频内容，精准同步时间轴，适用于配音、字幕、K歌、播客等多种场景。做这个起因是因为手里有一些老歌或者一些市面上消失的歌，没有歌词，所以搞了个音频处理+AI生成歌词的网站。\n\n### 2025 年 7 月 29 号添加\n#### dallen(武汉) \n* :x: [BirthChartAI](https://birthchartai.com/)：精准星盘分析，AI智能揭示你的性格与命运轨迹\n* :x: [HowHotAmI](https://howhotami.org/)：AI颜值评分神器，一键测出你的吸引力与面部黄金比例\n\n#### heyjude(github)\n* :white_check_mark: [FreeConvert](https://www.freeconvert.cc/)：提供图片格式转换功能，支持 heic、heif、png、jpg、pdf 等格式\n\n### 2025 年 7 月 28 号添加\n#### sk(广州)\n* :white_check_mark: [AIColoringPages](https://ai-coloring-pages.art)：提供各种类型的着色图，支持收藏和PDF下载，所有着色图均是用AI生成，每天持续更新着色图，后续考虑支持用户自己AI生成着色图\n\n#### minutes\n* :white_check_mark: [Runway Aleph](https://runwayaleph.net/)：视频编辑新方式，Runway Aleph 是 AI 视频编辑平台，能通过简单的文本提示来改造视频内容。用户可以增删物体、生成新视角、应用风格迁移、调整光线，轻松达到专业级效果。\n\n#### Brice(南京) \n* :x: [kawaii coloring](https://kawaiicoloring.org/)：提供可爱类型的线稿图，持续更新\n\n#### nogeek(南京)\n* :white_check_mark: [Days Launch](https://dayslaunch.com/)：每天构建，每天发布。做一个发布站+目录站，让开发者都可以免费的发布自己的作品，进行获客和宣传\n\n#### Shanshi(武汉) - [Github](https://github.com/Shanshi66)\n* :white_check_mark: [Easy2Text](https://easy2text.app/)：将语音转成文本、字幕等多种格式\n\n#### wmin(北京) - [github](https://github.com/worminone)\n* :white_check_mark: [How To Sketch](https://howtosketch.net/): 图片转素描网站\n\n#### monsoonw(杭州)\n* :white_check_mark: [AI Stem Splitter](https://aistemsplitter.net)：AI 音轨分离器\n\n### 2025 年 7 月 26 号添加\n#### 码上云行科技(上海) - [官网](https://www.jessenbox.com/)\n* :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/)\n\n#### **Ch3nyang(南京)** - [Github](https://github.com/wcy-dt), [博客](https://blog.ch3nyang.top/)\n* :white_check_mark: [EasyTransfer](https://file.ch3nyang.top/)：免费、匿名、加密且易于使用的 E2EE 文件传输工具。只需访问一个简单的网页，即可使用设备代码连接到任何网络中的任何设备。支持免费的内网穿透，也可自行部署 - [仓库](https://github.com/WCY-dt/EasyTransfer)\n* :white_check_mark: [my-github-2024](https://2024.ch3nyang.top/)：统计用户2024年在GitHub上的活动，并根据提交记录等生成一份数据报告。预计下半年会更新为2025版 - [效果预览](https://github.com/WCY-dt/my-github-2024)\n\n#### 金川(杭州) \n* :white_check_mark: [AI ASMR Generator](https://aiasmrgenerator.com)：AI ASMR 视频生成器\n\n### 2025 年 7 月 25 号添加\n#### guangzhengli - [Github](https://github.com/guangzhengli) [Twitter](https://x.com/iguangzhengli) [Blog](https://guangzhengli.com)\n* :white_check_mark: [NextDevKit](https://nextdevkit.com)：Next.js & OpenNext 启动模板，可以比以往快 10 倍地构建你的SaaS应用程序，包括身份验证、支付、落地页、电子邮件、存储、博客、文档和数据库，只需要一天就能启动你的项目，支持部署到所有平台，原生支持 Cloudflare Workers & AWS 等平台。\n\n### 2025 年 7 月 24 号添加\n#### DT986(深圳) \n* :white_check_mark: [Photo AI Enhancer - 图片AI增强工具](https://www.leawo.com/image-enhancer/)：图片 AI 增强器，可自动或手动调整图片效果，如自动校正曝光、增强光线、去除噪点、调整眼睛大小、自动锐化等，支持批量图片效果增强 。\n* :white_check_mark: [DVD刻录](https://www.leawo.com/pro/dvd-creator.html)：帮助把图片或者视频刻录成DVD-9/DVD-5碟片、文件夹或者是ISO镜像文件，允许选择字幕与音轨，添加外部字幕，预置多个菜单模板并允许自定义菜单，提供多个视频编辑功能。\n\n### 2025 年 7 月 23 号添加\n#### 多喝热水 - [GitHub](https://github.com/acmenlei)\n* :white_check_mark: [OfferStar - AI 笔试面试辅助工具](https://www.offerstar.cn)：AI 笔试面试辅助工具，隐蔽性高，无视屏幕共享，切屏等检测，AI 问答秒级响应。\n\n### 2025 年 7 月 22 号添加\n#### Qiwei - [GitHub](https://github.com/qiweiii)\n* :white_check_mark: [Tovo - AI 会议/面试助手](https://tovo.dev)：在会议中，Tovo 是一款注重隐私的 AI 助手，完全在您的设备上运行，为会议和对话提供实时转录和智能协助，无需向外部服务器发送任何数据。\n\n#### Enda （香港）\n* :white_check_mark: [AI Todo](https://www.aitodo.art) ：像很多程序员一样，我日常要兼顾工作任务、生活琐事、项目计划，时常感到事情多但漏掉的也不少。想用智能方式管理这些待办，但市面上的工具要么设计臃肿，要么 AI 能力很弱。于是我花了几周开发了 AI Todo，目标是: \n* 只关注待办本身，不捆绑笔记、文档、时间轴等多余功能\n* 使用 AI 把“随手输入”自动转换为结构化任务（包含分类、优先级、预期时间等）\n* 实时排序，帮你优先处理最关键的事\n\n#### leo(上海)\n* :white_check_mark: [Dog Names World](https://dognamesworld.com/)：专为宠物爱好者打造的狗名导航网站，可按性别、风格、含义等多维度筛选，快速找到最适合你爱犬的名字。从可爱风到霸气风，一应俱全\n\n#### 雷光（石家庄）\n* :white_check_mark: [中文古籍數字復刻計劃](https://github.com/shanleiguang/vBooks)：古籍刻本掃描影像通常存在掃描變形、頁面瑕疵、文件巨大等問題，且圖像無法選中其文字從而不能查詢生字生詞，因而不便閱讀。該計劃目的是參照古籍刻本之原貌，復刻出文字版的電子書，支持圈註、查閱，方便存入電子閱讀器隨時閱讀。通過古籍刻本古樸形式所帶來的沉浸優雅之閱讀體驗，也許將吸引更多讀者愛上古籍閱讀。\n\n#### meetqy(成都)\n* :white_check_mark: [HiColors](https://hicolors.org)：专注收集动漫/游戏人物，制作成调色板的网站。\n\n#### alex(广州)\n* :x: [英语情景说（微信小程序）](https://english.iamdev.cn/)：真实场景英语口语练习，通过真实生活场景对话，让英语口语练习更有趣、更实用！\n\n### 2025 年 7 月 21 号添加\n#### fanison(北京) \n* :white_check_mark: [photo color changer](https://photocolorchanger.com/)：免费在线更改图像颜色，简化图像类型的处理流程。只需使用直观的颜色选择器选择目标区域（前景或背景），然后选择新的颜色即可\n\n### 2025 年 7 月 19 号添加\n#### Patrick (顺德)\n* :white_check_mark: [怼怼侠](https://www.duiduixia.com/)：小网站，用 AI 帮你优雅回怼阴阳怪气，不带脏话\n\n#### Q.Jin - [Github](https://github.com/qijin-3)\n* :x: [好有链接 数字名片](https://links.haoyou.tech)：数字名片工具，支持多身份名片管理和中文口令分享。它帮助你为每一个社交身份创建独立的名片，分别绑定不同的社交账号、内容卡片和联系方式。在不同场合，分享不同的自己，让对方快速了解你，无需反复自我介绍。除了支持微信分享你的名片。你还可以给每张卡片都绑定中文口令。通过口令搜索和分享卡片，轻巧、便捷，也更有趣 - [小程序二维码](https://links.haoyou.tech/Drawing_bed/Slide_16_9_-_25.png)\n\n#### Hnher(郑州) - [博客](https://www.hnher.com)\n* :white_check_mark: [会员次卡通](https://emember.hnher.com)：会员计次卡管理系统\n* :white_check_mark: [互游侠](https://egame.hnher.com)：游戏卡册收集器\n\n### 2025 年 7 月 18 号添加\n#### fx(深圳) - [Github](https://github.com/limxfx)\n* :white_check_mark: [ContactHelper](https://apps.apple.com/us/app/contacthelper/id6738916060)：编辑通讯录联系人属性，让 iPhone 支持T9拨号以及非中文系统下的通讯录排序\n* :white_check_mark: [Gone & Left](https://apps.apple.com/us/app/gone-left/id6744050306)：时间可视化，感受每一刻时间的流逝，支持 iPhone 小组件\n\n### 2025 年 7 月 17 号添加\n#### ziwu(广州) - [Github](https://github.com/ziwu7)\n* :white_check_mark: [Omnigen2](https://omnigen2.org/)：智源开源的 7B 统一多模态图像生成模型，一句话精准完成风格转换、元素增删、背景替换等高阶 PS 级操作。\n\n#### hnher(郑州)\n* :white_check_mark: [水印相机](https://camera.hnher.com/)：可以拍带水印照片并分享给微信好友。\n\n### 2025 年 7 月 16 号添加\n#### james（武汉）- [Github](https://github.com/JamesHuang22)\n* :white_check_mark: [去留助手AI](https://www.huiguo.info/)：专为海外留学生和海外发展的华人打造的智能决策辅助工具。通过 AI 大模型分析，根据每个人不同的情况，评估“回国发展”与“留在海外”两种路径的优劣，助力做出更明智的职业与人生选择。并且能通过大数据分析，智能计算与同龄人平均水平的位置。\n\n### 2025 年 7 月 14 号添加\n#### heyjude(上海）\n* :white_check_mark: [TmpMail](https://www.tmpmail.online): 免费临时邮箱TmpMail\n* :x: [Posterfy](https://www.posterfy.art/): 生成音乐海报\n* :white_check_mark: [Avatify](https://www.avatify.online/): 生成头像\n\n#### Selenium39(广州) - [Selenium39](http://github.com/Selenium39)\n* :white_check_mark: [LLMOCR](https://llmocr.com)：基于 AI 的 OCR 服务\n* :white_check_mark: [FWFW](https://fwfw.app)：Find Websites From World\n\n### 2025 年 7 月 13 号添加\n#### nogeek(杭州)\n* :white_check_mark: [stater best](https://starterbest.com/)：收集一下发布的产品，可以作为导航站、发布站\n\n### 2025 年 7 月 12 号添加\n#### fanison(北京)\n* :white_check_mark: [melhorar imagem](https://melhorarimagem.org)：专注巴西市场的在线图像处理工具，用 AI 帮助用户提升图片分辨率、增强画质、修复模糊和噪点，让您的照片焕然一新。\n\n#### hjiayu799\n* :white_check_mark: [魔镜歌词网](https://mojigeci.com/)：500 万歌词库，专业歌词搜索平台 - [更多介绍](https://mojigeci.com/about)\n\n#### Amyang(美国) - [Github](https://github.com/AmyangXYZ)\n* :white_check_mark: [PoPo](https://popo.love)：LLM 在线生成 MMD 纸片人姿势\n\n#### SSShooter - [GitHub](https://github.com/SSShooter)\n* :white_check_mark: [SS 工具箱](https://tools.mind-elixir.com/)：SS 工具箱是一个集成 40+ 实用在线工具的综合平台，专为提升你的工作效率和创造力而设计。所有工具完全在浏览器中运行，无需上传数据，确保完全的隐私和安全\n\n### 2025 年 7 月 10 号添加\n#### liunice (深圳)\n* :white_check_mark: [KissPixel](https://kisspixel.ai/)：AI 图像生成平台，集成六大核心工具：文本生成图像、图像风格转换、AI 换脸、智能图像替换、图像扩展和图像放大。平台采用积分制运营模式，新用户注册即可获得免费积分。支持多种订阅计划，满足不同用户需求。所有生成的图像均享有商业使用许可，可用于个人和商业项目。无论您是内容创作者、设计师还是营销专业人士，KissPixel 都能为您提供专业的 AI 图像创作解决方案。\n\n#### 李恩泽 - [GitHub](https://github.com/enzeberg)\n* :white_check_mark: [铜钟](https://tonzhon.whamon.com/)：专注听歌，无广告和社交，下载 歌曲/歌词，创建歌单，资源丰富，UI 清爽 - [更多介绍](https://about-tonzhon.netlify.app/)\n\n#### hcc(北京)\n* :white_check_mark: [分身宝](https://clone.youchong.club)：Android 应用多开工具，支持微信、QQ、抖音、小红书、淘宝、京东、拼多多、美团、快手、咸鱼等绝大多数主流应用以及各类游戏，轻松管理多个账号。\n\n#### asui(泉州)\n* :white_check_mark: [客群采集-微信小程序](https://my-works.oss-cn-beijing.aliyuncs.com/images/download.jpg)：拓客小工具，基于地理位置以及一些开放的api去采集商户信息，并围绕这些信息提供了一系列的小功能，例如：数据导入导出、拨打电话、保存通讯录、导航等等\n\n### 2025 年 7 月 8 号添加\n#### iam-tin - [Github](https://github.com/iam-tin)\n* :white_check_mark: [Humanizar Text](https://humanizartexto.app/)：一键优化 AI 生成的文本，让AI无法检测到文本是AI所生成，AI时代下“去AI”的本文神器。\n* :white_check_mark: [HIDream AI](https://hidream.online/)：HiDream 大模型在线生成图像，让图像更清晰更逼真。\n* :white_check_mark: [MORSE CODE](https://morsecode-translator.app/)：一键把内容生成对应的摩斯电码的平台，可以通过摩斯电码表达爱意，或者让莫斯电码成为两个人之间的“加密”语言。\n\n### 2025 年 7 月 7 号添加\n#### sk(广州)\n* :x: [摸鱼地图](https://moyumap.com/)：记录和可视化大家\"摸鱼\"次数的趣味网站。包括摸鱼区域热力图，摸鱼排行榜，看看今天谁在一起摸鱼。\n\n### 2025 年 7 月 6 号添加\n#### ShawnHacks(北京) - [Github](https://github.com/ShawnHacks)\n* :white_check_mark: [Gemlink.app](https://gemlink.app)：集内容收集、整理与社交分享于一体的平台。可以作为“稍后阅读”替代使用。旨在解决信息过载、跨平台内容割裂和深度阅读缺失的问题，打造“个性化互联网精华库与思想交流空间” - [配套浏览器插件](https://chromewebstore.google.com/detail/gemlink-your-space-for-sm/pickcibaiaapcbobgbjgmomocmcdpmmn)\n\n#### Margox(北京) - [Github](http://github.com/margox)\n* :white_check_mark: [晚星](https://dream.sayhi.cc/): 简约纯粹的白噪音App，包含上百种自然音效和轻音乐，可自由搭配组合，辅助睡眠、放松情绪，缓解压力。\n\n### 2025 年 7 月 5 号添加\n#### zgcoder\n* :white_check_mark: [图片压缩神器](https://www.zgcoder.com/tic/)：对图片进行快速高效的批量压缩和格式转换\n\n### 2025 年 7 月 4 号添加\n#### Orion - [Github](https://github.com/OrionTyce)\n* :white_check_mark: [Ries.AI](https://ries.ai/zh/learn-english?c=sP0B)：颠覆你对学英语的认知！英语学不好的最大原因是接触的太少！我们创新地将高频词汇融入你看的视频和文章，把每天接触的大量中文改造一部分成英语接触，渐进低压拓展语言边界。\n\n#### james（武汉）\n* :white_check_mark: [实时工资计时器](https://www.realtimesalary.info/)：输入你的年薪或月薪，即可实时看到每一秒赚了多少钱。支持多种货币和实时汇率转换，适合远程工作者、自由职业者等，随时感受赚钱的爽感！比如干远程的小伙伴，赚的是美金，可以实时转换成人民币，干活的时候，非常的有爽感。\n\n### 2025 年 7 月 3 号添加\n#### ChillWay\n* :white_check_mark: [TwitterDown](https://twitterdown.com/): 下载 Twitter 视频\n* :white_check_mark: [KuaishouVideoDownload](https://kuaishou-video-download.com/): 下载快手视频\n\n#### wdh(杭州) \n* :white_check_mark: [Veegen](https://veegen.ai/)：图片生成视频工具\n\n### 2025 年 7 月 2 号添加\n#### yelo1900 - [Github](https://github.com/yelo1900)\n* :white_check_mark: [Crybaby Wallpaper 4K 高清壁纸](https://crybaby-wallpaper.com)\n\n#### tao(杭州) - [Github](https://github.com/nietao2018)\n* :white_check_mark: [Converters.pro](https://www.converters.pro)：基于 AI 的图片和视频转换网站，可以帮你做背景修复、老照片恢复、虚拟换衣\n\n### 2025 年 7 月 1 号添加\n#### rns\n* :white_check_mark: [Quitar Fondo](https://quitarfondo.cc/)：（西班牙语产品，无中文或英文版）用 AI 删除图片背景\n\n#### iam-tin - [Github](https://github.com/iam-tin)\n* :white_check_mark: [MARS AI](https://marsai.site/)：MARS AI 提供免费的 AI 视频生成和图像生成，用文本或图片创建专业视频和图片，把点子转为视觉内容\n\n#### RainbowBird | 洛灵 (上海) - [Github](https://github.com/luoling8192), [博客](https://blog.luoling.moe)\n* :white_check_mark: [AIRI](https://github.com/moeru-ai/airi)：包含 AI 老婆/虚拟角色灵魂的容器，将它们带入我们的世界，希望达到 Neuro-sama 的高度，完全由 LLM 和 AI 驱动，能够进行实时语音聊天、玩 Minecraft、玩Factorio。可在浏览器或桌面运行。\n\n### 2025 年 6 月 30 号添加\n#### seeeeal（西安） - [Github](https://github.com/seeeeal) [Blog](https://seeeeal.fun/)\n* :white_check_mark: [相机水印生成器](https://exifframe.org): 在线为图片添加相机水印。相机水印包含相机品牌 / 型号 / 拍摄时间 / 拍摄地点 / 光圈 / 快门 / ISO 等信息。优雅的展示你的摄影作品。无需注册登录，免费导出。\n\n### 2025 年 6 月 29 号添加\n#### Dylan Tao(合肥)\n* :white_check_mark: [SaaSGree](https://saasgree.com)：SaaSGree 专为企业间签订各类 SaaS 合同的场景而设计，帮助用户通过专业合同模板快速生成协议，无需高价聘请律师，也避免使用低质量模板带来的法律风险。\n\n### 2025 年 6 月 28 号添加\n#### hjiayu799\n* :x: [AI Instagram Username Generator](https://instagramusername.org/)：生成用户名的网站，输入关键词并选择风格快速生成创意名称。\n它还提供匹配的简介建议，特是针对于社交媒体 facebook twitter Instagram...微博之类的，且基于 AI 技术分析流行趋势，生成的内容兼具独特性与吸引力。并且防止重复无法注册 - [更多介绍](https://instagramusername.org/about)\n\n#### leo(上海)\n* :white_check_mark: [Asphalt Calculator](https://asphaltcalculatorhub.com/)：沥青价格计算器\n  \n#### Ethan Sunray\n* :white_check_mark: [KKV AI](https://kkv.ai)：KKV 是一站式 AI 创作平台，提供视频生成、图像创作、照片编辑、趣味滤镜、AI 聊天助手等功能，无障碍访问 Veo 3、Flux、Claude Opus 4 等 100+ 顶级模型\n\n#### erickkkyt - [Github](https://github.com/erickkkyt)\n* :white_check_mark: [AI  Dog Olympics Generator](https://www.dogolympics.net/)：制作独一无二、爆火的动物奥运会 AI 视频\n\n### 2025 年 6 月 27 号添加\n#### toby(南京)\n* :white_check_mark: [FantasyGen](https://fantasygen.net/)：AI 生成奇幻地图和人物\n\n#### sing1ee(上海)\n* :white_check_mark: [Curate Click](https://curateclick.com/)：导航站，收录产品和工具。\n\n#### james(杭州）\n* :white_check_mark: [fluxcontext](https://fluxcontext.app/) : 用 AI 修改你的图片（使用 FLUX KONTEXT AI），Professional Online Image Enhance with FLUX KONTEXT AI\n\n### 2025 年 6 月 26 号添加\n#### Allen(深圳) \n* :white_check_mark: [FLUX Kontext](https://kontextflux.com )：上下文感知智能图像编辑平台，内置 FLUX.1 Kontext ，Gpt4o image 图像编辑器。能够保持人物一致性，对画面精修\n\n#### rns\n* :white_check_mark: [Headcanon 生成器 - 创作同人小说创意](https://headcanongenerator.fun/)： 为您喜爱的角色创作独特的同人小说创意\n\n### 2025 年 6 月 25 号添加\n#### DT986(深圳) \n* :white_check_mark: [Amazon Downloader](https://www.leawo.org/save-video/)：Amazon 的点播视频下载工具\n* :white_check_mark: [免费的5合1播放器软件](https://www.leawo.com/)：可播放 4K 蓝光、蓝光、DVD、视频与音频\n#### HongZhong(北京)\n* :white_check_mark: [Kmail临时邮箱](https://kmail.pw/)：免费安全的临时邮箱，保护您的个人隐私，告别广告垃圾邮件的骚扰\n\n### 2025 年 6 月 24 号添加\n#### Poiybro\n* :white_check_mark: [My Ringtone](https://myringtone.app/zh-cn/)：免费无注册的 100w+ 铃声资源 在线下载工具，只要你想要，没有你搜不到的铃声 - [更多介绍](https://myringtone.app/zh-cn/about)\n\n### 2025 年 6 月 23 号添加\n#### wtechtec(深圳) - [Github](https://github.com/WtecHtec), [博客](https://iam.xujingyichang.top/)\n* :white_check_mark: [whisperkeyboard](https://whisperkeyboard.app/)：灵动岛 + LLM + whisper 语音输入\n\n#### zhucm - [Github](https://github.com/zhucm)\n* :white_check_mark: [金句盲盒](http://jinju.yotooapp.com)：趣站，页面定时随机推荐一条影视、歌曲或书籍等精彩文字内容，自定义配图或AI生成配图，可复制链接或创建卡片分享。\n\n### 2025 年 6 月 22 号添加\n#### Horatio (广州)\n* :white_check_mark: [Labubu Live Wallpaper](https://labubulivewallpaper.cc)：专为 Labubu 爱好者打造的免费高清动态壁纸宝库，收录超过100款动态壁纸，让可爱的 Labubu 在你的屏幕上动起来，网站提供免费下载获取精美动画 Labubu 动态壁纸设计，并适用于所有设备。\n\n### 2025 年 6 月 21 号添加\n#### z3674313\n* :white_check_mark: [WhatsMyName](https://whatsmyname.me/)：在互联网上搜索用户名足迹的网站。它可覆盖主流社交媒体、论坛、代码托管平台等进行全局搜索，借助高效算法快速出结果 - [更多介绍](https://whatsmyname.me/about)\n\n#### james(杭州)\n* :white_check_mark: [asmrvideo.ai](https://asmrvideo.ai/): 用 Veo3 生成高质量的 ASMR 视频\n\n#### DeepBlue-杭州\n* :x: [AI Rap Generator](https://rapgenerator.io/)：Rap 歌曲生成器\n\n#### kkkk-杭州\n* :white_check_mark: [Vogue Veo 3 Generator](https://www.vogueai.net/veo-3-generator)：最便宜的 Veo3 文本生成视频\n\n#### leo(上海)\n* :white_check_mark: [Coast FIRE Calculator](https://coast-fire-calculator.com/)：退休储蓄计算器\n\n#### monsoonw(杭州)\n* :white_check_mark: [Free AI Image Generator](https://ai-image-generator.co)：一站式聚合所有主流 AI 图片生成模型，无需登录使用 - [更多介绍](https://github.com/free-ai-image-generator/Free-AI-Image-Generator)\n\n#### DamonTsang986(深圳) \n* :white_check_mark: [CleverGet Free Recorder](https://www.leawo.org/cleverget-recorder/)：免费录制在线视频并可过滤广告的工具\n* :white_check_mark: [免费录屏器](https://www.leawo.com/free-screen-recorder/)：免费的4合1屏幕录制软件\n\n### 2025 年 6 月 19 号添加\n#### smkwls(深圳) - [Github](https://github.com/smkwls)\n* :white_check_mark: [sound effect generator](https://soundeffectgenerator.org/)：音效生成网站, 生成自定义音效\n* :white_check_mark: [Lip Sync](https://lipsync.studio/)：视频和音频嘴形同步，将视频中人的嘴形进行改变以适配音频\n* :white_check_mark: [Quit Porn AI](https://quitporn.ai/)：帮助人们戒除色情成瘾\n\n#### vladelaina - [Github](https://github.com/vladelaina), [博客](https://vladelaina.com/blog)\n* :white_check_mark: [Catime](https://github.com/vladelaina/Catime)：极致轻量的 Windows 倒计时工具，具有番茄工作法功能、透明界面和丰富自定义选项，只需几 MB 内存且几乎不占用 CPU 资源，便可在 Windows 上优雅掌控时间 - [更多介绍](https://vladelaina.github.io/Catime/)\n\n### 2025 年 6 月 18 号添加\n#### Caron77 - [Github](https://github.com/Caron77ai)\n* :white_check_mark: [Veo3 AI Video Generator](https://veo-3.art)：支持文本转视频和图像转视频，配备原生音频生成和精准唇形同步，2-5秒完成专业级视频创作。\n* :white_check_mark: [Flux Kontext AI Image Editor ](https://flux-kontext.xyz)：基于 Black Forest Labs 多模态技术的专业图像转换工具，支持风格迁移、背景替换等功能，2-5秒完成高质量编辑。\n\n#### LuSrackhall(深圳) - [Github](https://github.com/LuSrackhall)\n* :white_check_mark: [KeyTone](https://keytone.xuanhall.com/)：简单易用、高度可定制的开源按键声音应用，帮助你通过载入自制音频打造独一无二的键音体验，支持多合一 ***高级声音*** 的随机或顺序触发，支持 ***高级声音*** 间的 ***组合与继承***，力求每次敲击都充满创意，释放你的键音艺术。 - [更多介绍](https://github.com/LuSrackhall/KeyTone)\n\n#### md2card (深圳) - [Github](https://github.com/JsonChao)、[博客](https://juejin.cn/user/4318537403878167/posts)\n* :white_check_mark: [md2card](https://www.md2card.online/)：MD2Card 在线工具，支持多主题，一键将 Markdown 拆分并生成知识卡片，支持 AI 魔幻卡片和长文智能拆分功能，可编辑，可导出 PNG/SVG/PDF，适合笔记分享与社媒传播\n\n#### Alex - [Github](https://github.com/C-Jeril)\n* :white_check_mark: [Kuakua夸夸](https://kuakua.app/)： 全网最全的心理学资源网站，用简单心理学与AI工具带来幸福激发内在力量 | 成为更好的自己 | 简单心理学，目前还在持续更新中，做更多可体验的心理学内容 - [更多介绍](https://github.com/C-Jeril/kuakua)\n\n### 2025 年 6 月 16 号添加\n#### handsometom\n* :white_check_mark: [Labubu Wallpaper](https://labubulivewallpaper.com/)：下载高级 Labubu 动态壁纸合集，免费获取精美动画 Labubu 动态壁纸设计。适用于所有设备的高品质 Labubu 动态壁纸，动画流畅。\n\n### 2025 年 6 月 13 号添加\n#### Anna - [Github](https://github.com/fluxstrive)\n* :white_check_mark: [Seedance AI Video Generator](https://seedanceai.net/)：用 文字/图片 生成视频，Seedance AI 将您的想法转化为令人惊叹的视频（Seedance 1.0 Pro 模型）\n\n### 2025 年 6 月 12 号添加\n#### sing1ee - [Github](https://github.com/sing1ee)\n* :white_check_mark: [Random Letter Generator](https://randomlettergenerator.app/)：随机生成指定数量的序列,适用密码生成、游戏开发中的随机元素序列等等\n\n#### TuShenmei - [Github](https://github.com/TuShenmei-xiannv)\n* :white_check_mark: [职场沟通小诸葛](https://procommai.com/)：告别职场说错话焦虑，AI助你掌握高效沟通技巧，提升职场表达力。  \n如果你是以下人群，那么职场沟通小诸葛将是你的得力助手：  \n职场新人/下属：面对领导和前辈，常常在汇报工作、提出请求时感到压力，担心言辞不妥，显得不专业或冒犯。  \n团队管理者/上级：需要向下属布置任务、提供反馈甚至批评，希望能做到既清晰有力，又不打击团队士气。  \n跨部门协作者：在与不同背景的同事沟通时，需要频繁切换沟通风格，以确保信息准确传达，并推动项目顺利进行。  \n所有追求高效的职场人：厌倦了将宝贵的时间浪费在遣词造句的内耗上，希望将精力聚焦于更有创造性的核心工作。  \n\n#### Anna - [Github](https://github.com/fluxstrive)\n* :white_check_mark: [Veo3 AI](https://aiveo3.net/)：根据文本提示或图像生成专业视频（使用 Veo3），并提供本地音频和逼真的物理效果\n\n#### chasays\n* :x: [veo3 AI video generator](https://zacose.com/veo3_ai_video_generator)：通过 AI 生成的音频和视觉完全同步，效果彻底改变视频的创作，使用VEO 3 AI API解锁视频创建的未来 - 与音频同步的无缝视频生成\n\n### 2025 年 6 月 10 号添加\n#### dfyfc\n* :white_check_mark: [Face To Many](https://facetomany.fun/)：用 AI 把您的脸部照片转换成不同的艺术风格，不同种族，不同角色\n\n#### zhugezifang\n* :white_check_mark: [临时邮箱](https://tempmailto.online/zh/)：安全且匿名的临时电子邮件服务，告别垃圾邮件，保护您的隐私，免费、安全、私密的一次性邮箱服务！\n\n#### Bobo Cao(合肥) - [Github](https://github.com/bo0-bo0), [博客](https://indiepa.ge/bo0bo0)\n* :white_check_mark: [Imagetopixel](https://imagetopixel.art)：把图片转换成像素画\n\n#### 萝卜(南昌)\n* :x: [Ruleta.games](https://ruleta.games)：大转盘工具，适合抽奖、决定谁上台发言、选惩罚任务、做课堂游戏\n\n#### wtechtec(深圳) - [Github](https://github.com/WtecHtec)\n* :white_check_mark: [在线二维码🧨](https://xujingyichang.top/)：专业的二维码生成工具，为用户提供免费、高质量的QR码制作服务。 支持多种内容类型和自定义样式，满足各种使用场景需求\n\n#### Chris\n* :white_check_mark: [Brat Generator](https://www.brat-generator.pro/)：图像生成工具，灵感来自流行歌手 Charli XCX 的专辑《BRAT》的视觉风格。只需输入一句话，即可一键生成具有“BRAT”美学的专辑风封面图，包括标志性的荧光绿背景、极简无衬线字体和强烈的视觉冲击力。\n\n### 2025 年 6 月 6 号添加\n#### xxuan - [Github](https://github.com/xuanxuan96)\n* :white_check_mark: [Image Converter](https://image-1.org/): 从图片中提取文字。还可以翻译图片\n\n#### pytpo \n* :white_check_mark: [壁響桌布](https://wallecho.com/ )：可以根据任意文本，免费生成手机或电脑桌布的工具 只需要短短十几秒就可以完成心中想要的手机或电脑壁纸 - [更多介绍](https://wallecho.com/about)\n\n#### sagasu - [Github](https://github.com/s87343472)\n* :white_check_mark: [特殊符号复制工具](https://special-characters.aitoolshubs.com/)：专业的特殊符号复制工具，包含1000+特殊字符，支持数学符号、货币符号、箭头、希腊字母等多种分类。一键复制，提升Word文档编辑效率。\n\n#### FINE（赣州） - [Github](https://github.com/fine54)\n* :white_check_mark: [OC Maker](https://ocmaker.app)：基于 GPT4o 的 OC（原创角色）生成器，出图质量好，效果不错\n\n#### Schopenlaam - [博客](https://schopenlaam.com/)\n* :white_check_mark: [Mouse Pro](https://mousepro.app)：鼠标高亮、放大、聚焦、阅读，适用于视频会议屏幕共享、演示和视频教程录制等\n\n### 2025 年 6 月 4 号添加\n#### CodaPrime \n* :white_check_mark: [AI 取名网](https://bbname.cc/)：用 AI 帮助宝宝取名服务，依据中国传统命理学为您的宝宝提供最为合适的名字。这款扩展功能融合了八字、生肖、五行以及三才五格等多种传统命理因素，为您的宝宝量身打造吉祥如意的好名字 - [更多介绍](https://bbname.cc/about)\n\n#### rns\n* :white_check_mark: [FLUX.1 Kontext Image Generator](https://flux1kontextimagegenerator.online/)，FLUX.1 Kontext 图像生成器：一种具有上下文理解、角色一致性和本地编辑功能的 AI 图像生成器\n\n#### Ryan\n* :white_check_mark: [AI Baby Generator](https://aibabygenerator.art/)：基于 AI 的宝宝长相预测工具\n\n#### dy \n* :white_check_mark: [台灣解夢](https://twjiemeng.com/)：融合 AI 技术与传统解梦学说，为用户提供免费梦境解析服务，无需注册即可一直免费使用 - [更多介绍](https://twjiemeng.com/about)\n\n#### mao wei - [Github](https://github.com/mw138)\n* :white_check_mark: [AI 随机图片生成器](https://randomimagegenerator.info/index.html)：免费的 AI 随机图片生成器，支持数字艺术、抽象背景、概念插图等多种风格\n\n#### Anna - [Github](https://github.com/fluxstrive)\n* :x: [Bypass Turnitin](https://bypassturnitin.net/)：将 AI 生成的内容转换为自然的文本，绕过 Turnitin 和 AI 检测，同时保留原文的含义和质量\n\n#### aipromptdirectory - [Github](https://github.com/aipromptdirectory)\n* :x: [product-rule](https://product-rule.com)：探索并发现最具创新性的人工智能产品、工具和解决方案，以改变您的工作流程并提升生产力，汇聚了大量的优秀 AI 产品\n\n#### dy \n* :white_check_mark: [AI Line Art Generator](https://lineart.app/)：功能强大的 AI 线稿生成平台，为用户提供多样化的线稿创作与获取服务 - [更多介绍](https://lineart.app/about)\n\n### 2025 年 6 月 3 号添加\n#### Amyang - [Github](https://github.com/AmyangXYZ)\n* :white_check_mark: [Proof of Awesome](https://proof-of-awesome.app)：AI 辅助的学术同行评审的共识机制，将你的真实成就永久记录在区块链上，用有意义的人类成就取代传统挖矿 - [更多介绍](https://proof-of-awesome.app/call-for-achievement)\n\n### 2025 年 6 月 2 号添加\n#### Allen(深圳) \n* :white_check_mark: [FLUX Kontext](https://kontextflux.com)：FLUX 图片生成工具，简单图文指令实现专业级视觉创作\n\n#### sing1ee- [Github](https://github.com/sing1ee)\n* :white_check_mark: [Veo3 video](https://veo3.directory/)：收集 Veo3 生成的最新视频，每天更新\n\n#### [Github](https://github.com/bear-clicker)\n* :white_check_mark: [LoraAI](https://loraai.io/)：flux lora 图片生成工具，用户可以选择不同的 lora 风格实时生成对应的风格图片，价格便宜\n\n#### yvonuk - [推特](https://x.com/mcwangcn)\n* :white_check_mark: [Ask Me Anything](https://ama.stockai.trade/)：世界上最简单的问答网站，内置实时联网搜索，你可以问它任何问题，还可以查询任何推特/X用户的最新动态，例如输入@elonmusk即可获得马斯克的最新X动态\n\n### 2025 年 5 月 30 号添加\n#### NoteGen - [Github](https://github.com/codexu/note-gen)\n* :white_check_mark: [NoteGen](https://notegen.top/)：跨平台的 Markdown AI 笔记软件，致力于使用 AI 建立记录和写作的桥梁\n\n#### Anna - [Github](https://github.com/fluxstrive)\n* :white_check_mark: [Mii Maker](https://miimaker.net/)：免费的在线角色创建者，可以让你设计个性化的 Mii 化身。创建具有可定制功能的独特虚拟角色，包括脸型、发型、眼睛、衣服和配饰\n\n#### Corey Chiu - [Github](https://github.com/iamcorey)\n* :white_check_mark: [JSON Merge](https://jsonmerge.com/)：JSON 合并工具\n\n#### ShownHacks - [Github](https://github.com/ShawnHacks), 北京\n* :white_check_mark: [AIHuntList](https://aihuntlist.com/)：发现最佳 AI 产品和工具的搜索导航\n* :white_check_mark: [NestSaaS](https://nestsaas.com): 构建内容驱动的网站和SaaS应用的现代框架，配备强大的管理工具\n* :white_check_mark: [SnapReader](https://chromewebstore.google.com/detail/snapreader/mogfnnfmcbchdciddfejbkfgahklegpp)：立即快速保存在线内容，稍后轻松阅读，SnapReader 是一款轻量级的浏览器扩展，旨在帮助你以最小的阻力捕获在线内容\n\n### 2025 年 5 月 29 号添加\n#### Charlie(上海) - [Github](https://github.com/weight567)\n* :white_check_mark: [Transmonkey](https://www.transmonkey.ai/)：所有您所需的翻译工具，一应俱全 - [更多介绍](https://www.transmonkey.ai/faq)\n* :white_check_mark: [TeachAny](https://www.teachany.com/)：使用 TeachAny AI 工具，简化您的教学 - [更多功能](https://www.teachany.com/tools)\n* :white_check_mark: [Imgkits](https://www.imgkits.com/)：全能 AI 图像、视频编辑器：使用 Imgkits 创建令人惊艳的照片和视频 - [更多功能](https://www.imgkits.com/create/image)\n\n#### zane - [Github](https://github.com/littleblackone)\n* :white_check_mark: [AgentHunter](https://www.agenthunter.io/)：每日更新的 AI Agent 目录和新闻\n\n\n### 2025 年 5 月 28 号添加\n#### Lingglee - [Github](https://github.com/lingglee)\n* :white_check_mark: [English Daily](https://englishdaily.ai/)：AI 每日英语学习平台\n\n### 2025 年 5 月 26 号添加\n#### 羊上上(杭州) - [Github](https://github.com/yangbishang/)\n* :white_check_mark: [AI 今日热榜](https://aihot.today)：汇集全球顶尖来源的最新 AI 新闻、研究和趋势，为您节省宝贵时间\n\n### 2025 年 5 月 25 号添加\n#### 3d-animation - [Github](https://github.com/3d-animation)\n- :x: [buzz-cut AI](https://buzz-cut.me)：上传您的照片，用 AI 变成\"寸头\"(buzz cut）发型。预览发型效果\n\n##### Sarkory(广州)\n- :white_check_mark: [Veo 3 AI](https://veo3ai.org)：Veo 3 AI 视频生成\n\n### 2025 年 5 月 22 号添加\n#### Sawana Huang\n* :white_check_mark: [Board Foot Calculator](https://boardfootcalculator.cc/)：简便的在线版英尺计算器，用来计算木材的体积和对应的价格，面向木工爱好者，或者要购买木材的买家\n\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [mksaas.com](https://mksaas.com)：最好的 AI SaaS 模板，只需1个周末就可以上线你的 AI SaaS\n\n### 2025 年 5 月 21 号添加\n#### Axis Wang(深圳) - [Github](https://github/wangxs404)\n* :white_check_mark: [video2ppt.com](https://video2ppt.com)：将任意来源的视频转换为 PPT 演示文档\n\n#### Rns - [Github](https://github.com/rnsss)\n* :white_check_mark: [AI Doll](https://ai-doll.online/)：用 AI 将人像照片转换成玩具人偶\n\n#### hanlaoshinb - [Github](https://github.com/hanlaoshinb)\n* :white_check_mark: [TarotDreamHub](https://www.tarotdreamhub.com/)：免费 AI 塔罗牌占卜。想好您想占卜的问题，在线抽牌后就可以一键解牌啦！\n\n### 2025 年 5 月 20 号添加\n#### Lee - [Github](https://github.com/lkunxyz)\n* :white_check_mark: [bratgenerator](https://bratgenerator.dev/)：可以设置字体，背景颜色等\n\n#### HuzefaUsama25 - [Github](https://github.com/HuzefaUsama25)\n* :white_check_mark: [WriteHybrid](https://writehybrid.com/)：可绕过所有顶级 AI 检测器的 AI 人性化工具\n\n#### Leo(上海)\n* :white_check_mark: [Firsto](https://firsto.co/)：你的产品，从这里出发\n* :white_check_mark: [Raffle Blue](https://raffle.blue/)：针对 bluesky post 的抽奖工具\n* :x: [AI teach tools](https://aiteach.tools/)：教育类 AI 工具的目录站点\n* :white_check_mark: [BlueSky SDK](https://bskyinfo.com/sdks/)：Bluesky & AT Protocol SDKs Directory\n  \n### 2025 年 5 月 19 号添加\n#### Will(杭州) - [Github](https://github.com/will-deeplearn)\n* :white_check_mark: [TarotQA](https://tarotqa.com)：AI 塔罗占卜平台，提供多位 AI 塔罗师风格、智能牌阵推荐、每日运势和语音解读等\n\n### 2025 年 5 月 18 号添加\n#### Rainlin - [Github](https://github.com/Rainlin007)\n* :white_check_mark: [FaceRatingAI](https://faceratingai.com/)：AI 颜值打分网站，包括不同维度评分、整体排名等\n* :white_check_mark: [AIPoemGenerator](https://aipoemgenerator.cc/)：AI 写诗网站\n\n#### lkunemail - [Github](https://github.com/lkunemail)\n* :white_check_mark: [AI Tool Kit](https://aitoolkit.io/)：AI 工具聚合站，通过不同类别找到你想要的 AI 工具\n\n#### worminone - [Github](https://github.com/worminone)\n* :white_check_mark: [AI Image Editor](https://aiimageeditor.me/)：AI 图片处理工具，支持图片增强、去水印、抠图、风格转换、线稿提取等十余种功能。无需下载软件，无需注册，上传图片即可一键生成专业效果。适用于电商设计、社交内容创作、摄影后期、教育教学等多种场景，让图片编辑变得更智能、更高效、更简单！\n\n### 2025 年 5 月 17 号添加\n#### SAM-TTS-Tool - [Github](https://github.com/SAM-TTS-Tool)\n* :white_check_mark: [Microsoft SAM TTS](https://samtts.com/)：复刻 Microsoft SAM 的文本转语音工具，支持文字输入并生成极具复古感的电子语音。用户可自定义音高、语速、嘴型、喉咙共鸣等参数，还可下载生成的语音（WAV 格式），无需登录，适合内容创作、游戏配音、搞笑语音等多种场景。\n\n### 2025 年 5 月 16 号添加\n#### apple1413 - [Github](https://github.com/apple1413)\n* :white_check_mark: [Free Voice Cloning](https://aiclonevoicefree.com/)：仅需 5 秒音频样本，即可克隆你的声音 无需登录 免费无限制使用\n\n#### Ayden - [Github](https://github.com/Ayden-123)\n* :white_check_mark: [Image to Image AI](https://imgtoimgai.org/)：将您的普通照片转换为令人惊叹的艺术作品。是艺术家、设计师和创意专业人士重新构想视觉内容的理想工具\n\n### 2025 年 5 月 15 号添加\n#### lwj973 - [Github](https://github.com/lwj973)\n* :white_check_mark: [SafeWrite AI](https://safewrite.ai/)：结合 AI Humanizer 与 AI 检测功能的写作工具，帮助用户生成更自然、难以被检测为 AI 的内容。支持训练私有化的 Humanizer，模拟个人文风并确保隐私不泄露。同时整合 GPTZero、Turnitin 等检测器，一键获取多平台检测结果。通过“改写-检测-再改写”的自动流程，有效提升内容通过率，适用于学生、自由写手及内容创作者。\n\n#### Sarkory(广州)\n* :white_check_mark: [FramePack AI](https://frame-pack.video)：AI 视频生成\n\n### 2025 年 5 月 14 号添加\n#### bear-clicker - [Github](https://github.com/bear-clicker) \n* :white_check_mark: [ACE-Step](https://acestep.app/)：音乐生成，文本转音乐 歌词生成\n\n#### lkunxyz - [Github](https://github.com/lkunxyz) \n* :white_check_mark: [Graffitiart app](https://graffitiart.app/)：涂鸦生成工具，可以生成各种不同风格的涂鸦\n* :white_check_mark: [Musci](https://musci.app)：AI 音乐生成，文本转音乐 歌词生成\n\n### 2025 年 5 月 13 号添加\n#### Brice(南京) \n* :white_check_mark: [Attractiveness Scale](https://attractivenessscale.com/)：颜值打分网站（基于 AI）\n\n### 2025 年 5 月 12 号添加\n#### cmdragon(广州) - [Github](https://[github.com/Amd794](https://github.com/Amd794))\n* :white_check_mark: [在线工具箱](https://tools.cmdragon.cn/zh)：满足各种任务需求的在线工具，强大的AI驱动工具，提升您的工作效率\n\n#### Jacky(南京) \n* :white_check_mark: [FacelessVideos.APP](https://facelessvideos.app)：将一个 idea 转化成短视频 ，自动加上语音，可以定制化背景音乐和字幕，发布在 youtube 频道中。\n* :white_check_mark: [ImagesArt.ai](https://imagesart.ai)：生成完美的AI艺术提示词。使用这个工具为Flux、Midjourney和Stable Diffusion模型生成并优化图像提示词。\n* :white_check_mark: [Flux2Klein.io](https://flux2klein.io/)：在 0.5 秒内生成照片级真实图像。基于 Flux2 Klein 9B 模型，提供统一的图像生成和编辑功能。无需注册即可免费生成 2 次。\n\n#### sing1ee - [Github](https://github.com/sing1ee)\n* :white_check_mark: [PapyrusFont.com](https://papyrusfont.com/): 用 Papyrus 字体创建精美的文字设计，可保存为 PNG\n\n#### vampirewy - [Github](https://github.com/vampirewy)\n* :white_check_mark: [免费在线 AI 角色脑洞生成工具](https://characterheadcanongen.com/zh)：借助先进 AI 技术，一键生成多维度角色设定——性格、成长经历、人际关系、价值观等一应俱全。无需注册，完全免费，适用于小说、漫画、游戏等创作场景，智能解析人物特征，助你轻松突破瓶颈，打造鲜活立体的角色。\n\n### 2025 年 5 月 11 号添加\n#### Ayden - [Github](https://github.com/Ayden-123)\n* :white_check_mark: [Calligraphy Font Generator](https://calligraphyfontgenerator.org/)：免费在线书法字体生成工具，一键将普通文字转换为优雅的艺术字体，提供50多种风格选择，适用于设计、社交媒体等多种场景。\n\n### 2025 年 5 月 10 号添加\n#### Qiwei - [GitHub](https://github.com/qiweiii)\n* :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 站首页的换一换历史。有时不小心点太快导致错过了想看的视频，这个插件可以让你往回走，查看前几组推荐视频\n\n#### Christine(上海) - [Github](https://github.com/liuyinjiwen06)\n* :white_check_mark: [Addsubtitle](https://addsubtitle.ai/)：视频一键翻译编辑加字幕，超高效视频处理，精准翻译，还原情感；语音克隆与自然配音；自动字幕生成，高效省时；即时在线编辑\n\n### 2025 年 5 月 9 号添加\n#### samzong(上海):\n* :white_check_mark: [TabBoost（Chrome 扩展）](https://chromewebstore.google.com/detail/tabboost/pnpabkdhbbjmahfnhnfhpgfmhkkeoloe)： 提高浏览器标签效率，灵感来自 Arc 浏览器和开发者的实际体验 - [更多介绍](https://github.com/samzong/chrome-tabboost)\n\n#### jzhone(佛山) \n* :white_check_mark: [Best Bra Size Calculator](https://bestbrasizecalculator.com)：根据体态计算用户适合穿戴什么文胸以及相关保养提示\n\n#### Alex Li(苏州) \n* :white_check_mark: [信风 AI 外贸获客智能体](https://www.trade-wind.co)：每周 AI 全网实时搜索获取高质量线索，自动化拓展终端客户/经销商/合作伙伴，快速布局海外市场 - [更多介绍](https://www.trade-wind.co/compare)\n\n#### underwoodxie - [Github](https://github.com/underwoodxie)\n* :white_check_mark: [Free AI Beauty Test](https://aibeautytest.org/): AI 颜值测试，提供给你个性化的建议\n\n### 2025 年 5 月 7 号添加\n#### jerrybi(深圳) - [Github](https://github.com/jerrybi)\n* :white_check_mark: [AI Doll Generator](https://ai-doll-generator.net)：使用 AI 技术将人像转成玩具盒子风格！\n\n#### Caron77 - [Github](https://github.com/Caron77ai)\n* :white_check_mark: [4oimg.org](https://4oimg.org)：基于 OpenAI 最新图像技术的创作平台，支持多风格生成和精确文本渲染的 AI 绘图工具\n\n### 2025 年 5 月 6 号添加\n#### yiquan00 - [GitHub](https://github.com/yiquan00)\n* :white_check_mark: [Notion style illustration](https://illustration.imglab.dev)：专注于 Notion 风格插画生成网站，一句话提示词就能生成 Notion 风格插画/Flat style illustration \n\n#### Bobo Cao(合肥) - [Github](https://github.com/bo0-bo0), [博客](https://indiepa.ge/bo0bo0)\n* :white_check_mark: [Labubu Wallpaper](https://labubuwallpaper.com/)：下载 4K Labubu 壁纸，针对 iPhone, 笔记本和移动设备优化\n\n### 2025 年 5 月 2 号添加\n#### Allen(深圳) \n* :white_check_mark: [Clone UI](https://cloneui.org)：Web 网页克隆工具，只需上传网站截图、UI 设计图或网站链接就能还原 80% 前端代码设计\n* :white_check_mark: [Style Ai](https://styleai.art)：免费 GPT-4o 绘画工具，轻松将图片转成吉卜力、史努比、3D 盲盒等功能\n\n### 2025 年 4 月 29 号添加\n#### dodid - [Github](https://github.com/dodid) \n* :white_check_mark: [CFA Essentials](https://apps.apple.com/us/app/cfa-essentials-l1-3-exam-prep/id6745157137)：高效复习 CFA 考试的手机 App，可以随时随地学习的笔记内容\n\n#### vzt7 - [Github](https://github.com/vzt7/canvave)\n* :white_check_mark: [Canvave](https://canvave.com)：简单图形设计和动画制作平台。无须专业技能也能做出任意尺寸的精美设计；最高支持图片 3x 或动画 240 FPS 导出；内置基于 Flux 的 AI 文生图、图生图；适合电商卖家、广告设计、社媒运营、独立开发等有设计需求的群体\n\n### 2025 年 4 月 27 号添加\n#### wanghongenpin(北京) - [Github](https://github.com/wanghongenpin)\n* :white_check_mark: [ProxyPin](https://github.com/wanghongenpin/proxypin/blob/main/README_CN.md)：全平台系统开源免费抓包软件\n\n#### handsometong- [Github](https://github.com/handsometong2020)\n* :white_check_mark: [Action Figure AI Generator](https://actionfigureai.co/)：将您的照片转成动作人偶玩具图像。只需上传照片，添加配件和产品名称，选择喜欢的风格，即可生成专业级别的动作人偶包装盒效果图，适合收藏、分享或用作创意礼物\n\n#### FluxStrive- [Github](https://github.com/fluxstrive)\n* :white_check_mark: [Pet To Human](https://pettohuman.com/)：用人工智能把你的宠物照片变成人像，保留宠物独有的表情与个性\n\n### 2025 年 4 月 25 号添加\n#### Ayden-123 - [Github](https://github.com/Ayden-123)\n* :white_check_mark: [Character Headcanon Generator](https://characterheadcanongenerator.online/)：角色文本生成网站\n\n#### Sean - [Github](https://github.com/ShurshanX)\n* :white_check_mark: [Action Figure AI](https://actionfigureai.online)：用 AI 将照片转成手办图\n\n### 2025 年 4 月 24 号添加\n#### heygsc - [GitHub](https://github.com/heygsc)\n- :x: [circle net](https://circle-net.vercel.app) ：等分圆并连线的动画效果，支持点数编辑，支持点的拖拽\n\n### 2025 年 4 月 23 号添加\n#### chuyanghui8 - [GitHub](https://github.com/chuyanghui8)\n- :white_check_mark: [二维码解码器](https://qrfrompic.com/zh) ：扫描图片或使用摄像头提取二维码中的信息，不限量免费使用\n\n### 2025 年 4 月 21 号添加\n#### sing1ee - [GitHub](https://github.com/sing1ee)\n- :white_check_mark: [SVG Converter](https://svgviewer.app/svg-converter) ：编辑预览 SVG，SVG 转png，webp，ico等，不需要登录\n- :white_check_mark: [QWQ AI Assistant](https://qwq32.com/) ：免费提供经过深思熟虑且富有详细推理的答案的 AI 助手，不需要登录\n\n#### thence(深圳) - [Github](https://github.com/x-thence)\n- :x: [临时邮箱](https://temp-email.top/)：快速安全的临时邮箱, 保护您的隐私\n\n#### Ayden - [Github](https://github.com/Ayden-123)\n- :white_check_mark: [ImageToBlackAndWhite](https://imagetoblackandwhite.org/)：把彩色图片转成黑白图片\n\n#### alttextai-net - [GitHub](alttextai-net)\n- :white_check_mark: [AI Alt Text Generator](https://svgviewer.app/svg-converter) ：免费生成 alt 文本，创建 SEO 友好且易于理解的图片描述，支持多语言，无需登录。\n\n### 2025 年 4 月 19 号添加\n#### jianpingliu\n* :white_check_mark: [Qwikrank](https://qwikrank.com/)：自动调研 SEO 关键词、生成高质量 SEO 长文章、发布到博客、获取自然搜索流量，并且添加图片、内链、外链。适合独立创业者，无需 SEO 知识\n* :x: [SupportMatic](https://supportmatic.co/)：基于邮件的智能客服，自动索引历史邮件、支持添加知识库、免费 Help Desk 网站，大幅降低邮件客服工作量\n\n### 2025 年 4 月 18 号添加\n#### Ayden - [Github](https://github.com/Ayden-123)\n* :x: [ImageToAny](https://imagetoany.com/)：图片转化类型网站\n\n### 2025 年 4 月 16 号添加\n#### lizhichao - [Github](https://github.com/lizhichao)\n* :white_check_mark: [报告汇](https://www.vicsdf.com/)：各行各业的电子书、论文等数据报告\n \n#### Leo(上海)\n* :x: [教育类 AI 应用目录](https://aiteach.tools/)：教育类 AI 应用目录\n\n#### inno(上海)\n* :x: [Gitto](https://www.gitto.ltd/)：基于 Git 理念开发的 Todo 类 App\n\n### 2025 年 4 月 14 号添加\n#### Leo (上海)\n* :white_check_mark: [AI Affiliate 分销目录](https://aiaffiliatelist.com/)：收录支持 Affiliate 分销的 AI 应用\n\n### 2025 年 4 月 8 号添加\n#### vampirewyi\n* :white_check_mark: [免费在线 AI 卡通图片生成工具](https://aicartoongenerator.org/zh)：将文本和照片转换为令人惊艳的卡通风格图像。它提供多种艺术风格、丰富的自定义选项和高质量的输出，让用户轻松创建独特的头像、社交媒体内容和品牌插画\n\n#### Link (广州) - [Github](https://github.com/LinkTBF)\n* :white_check_mark: [动猫相机](https://apps.apple.com/cn/app/%E5%8A%A8%E7%8C%AB%E7%9B%B8%E6%9C%BA/id6449184105)：一键拍猫表情包的相机 APP\n\n#### i365dev - [Github](https://github.com/madawei2699)\n* :white_check_mark: [策引](https://www.myinvestpilot.com/)：全球市场技术分析工具，可以创建多个市场的模拟组合并做深度回测分析。同时正在开发 AI Agent 功能，可帮助用户使用大模型自动生成基于不同交易策略的模拟组合。\n\n### 2025 年 4 月 7 号添加\n#### 疯狂的小波(武汉)\n* :white_check_mark: [Logent AI](https://logent.ai/zh)：全球首个 AI Agent Logo 生成器；只需要输入产品名称/主要功能，自动生成合适的精美 Logo\n\n#### Jay\n* :white_check_mark: [ghibliimage图像转换](https://ghibliimage.art/) :免费将您的照片转换为 ghibli 风格\n* :white_check_mark: [Voice Cloning](https://aiclonevoicefree.com/)：只需要5秒语音，就可以免费克隆你的声音，无需等待。\n\n### 2025 年 4 月 4 号添加\n#### JasmineChzI(深圳) \n* :white_check_mark: [PhotoG V2](https://photog.art/)：世界上第一个人工智能营销代理：从一张图片生成广告、视频和 SEO 内容 — 您的电子商务成功永远在线的团队\n\n#### rukShen(深圳) - [Github](https://github.com/WtecHtec), [博客](https://iam.xujingyichang.top/)\n* :white_check_mark: [ReplayTact - Form Automation Tester](https://chromewebstore.google.com/detail/replaytact-form-automatio/ohkipcncfnmjoeneihmglaadloddopkg?authuser=0&hl=zh-CN)：自动化填写和测试网页表单的 Chrome 插件，支持动态数据生成和用户操作重放，提升测试效率和覆盖率\n\n### 2025 年 4 月 3 号添加\n#### nogeek(杭州) - [Github](https://github.com/nogeek-cn), [博客](https://nogeek.cn)\n* :white_check_mark: [javaguide](https://javaguide.net/)：「Java学习 + 面试指南」涵盖 Java 程序员、架构师需要掌握的核心知识\n* :white_check_mark: [chequewriting](https://chequewriting.com/)：将金额转成大小写的工具站\n* :white_check_mark: [acodenav](https://acodenav.com)：只收集编程导航，程序员导航的导航站\n* :white_check_mark: [atemplate](https://atemplate.com)：只收集完全免费的网页模板的导航站\n\n#### Leochens(北京) - [Github](https://github.com/Leochens) \n* :white_check_mark: [PNG贴纸切割器](https://tools.xiaotie.top/sticker-crop.html)：贴纸素材不规整，它来帮你自动切割成单个的，省时又省力！\n\n### 2025 年 4 月 2 号添加\n#### Nicole(深圳）\n* :white_check_mark: [Ghibli Meme Generator](https://ghibli-meme.com/)：免费生成吉卜力（Ghibli）风格的梗图（meme）\n\n#### Leochens(北京) - [Github](https://github.com/Leochens)\n* :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)\n\n### 2025 年 4 月 1 号添加\n#### Selenium39(广州) - [Github](https://github.com/Selenium39)\n* :white_check_mark: [ChatTempMail](https://chat-tempmail.com)：AI 驱动的临时邮箱服务\n\n#### zeikia(广州)\n* :white_check_mark: [Face Shape AI](https://detectorfaceshape.com/)：AI 脸型检测\n\n#### swiftzl(深圳)\n* :white_check_mark: [snapmail - 临时邮箱](https://snapmail100.com)：临时无限邮箱保护你的隐私安全\n\n#### XuanXu - [官网](https://aiverything.me/)\n* :white_check_mark: [Aiverything](https://aiverything.me/)：本地文件搜索。结合 GPU 并行计算、智能索引和优化排序算法，提供更快、更精准的本地文件搜索体验，有扩展可实现更多功能 - [更多介绍](https://meta.appinn.net/t/topic/66229)\n\n### 2025 年 3 月 29 号添加\n#### jaywongX(广州) \n* :white_check_mark: [UFreeTools - 你的免费工具集](https://ufreetools.com)：综合工具平台，提供高质量、易用的在线工具，解决开发和设计的各种需求\n\n#### jess(广州)- [Github](https://github.com/4o-image-gen)\n* :white_check_mark: [4oimage](https://4o-image.com/)：文生图网站，基于 Gemini 和 GPT4o\n\n### 2025 年 3 月 28 号添加\n#### zhushen - [Github](https://github.com/zhushen12580)\n* :x: [精准截图](https://puzzledu.com/shot)：智能精准截图工具（更懂内容创作者）\n\n### 2025 年 3 月 27 号添加\n#### Yasuomang(杭州)\n* :white_check_mark: [imghunt](https://imghunt.com/)：图片下载浏览器扩展，能自动检测、批量下载并转换网页上的各类图片格式，并且支持自定义导出尺寸\n\n#### Sawyer(上海) - [Github](https://github.com/Sawyer-G)\n* :white_check_mark: [idiom.today-中文成语学习工具](https://idiom.today/)：帮助英文用户学习中文成语的网站，通过脑图的形式拆分中文成语，提供词义解释，成语故事以及使用案例\n\n### 2025 年 3 月 26 号添加\n#### PixelBear - [GitHub](https://github.com/JobYu)\n* :white_check_mark: [Image2pixel](https://store.steampowered.com/app/3475120/Image2pixelPixelArtGenerator/)：图片转像素画工具，已上架 Steam\n\n#### 超能刚哥 - [Github](https://github.com/margox/)\n* :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)\n\n#### Lingglee - [Github](https://github.com/lingglee)\n* :x: [Pronunciation Exercises](https://pronunciationexercises.com/)：AI 全球发音训练平台\n\n### 2025 年 3 月 24 号添加\n#### underwoodxie\n* :white_check_mark: [Simpedit](https://simpedit.com/)：提供高质量图像特效的免费在线平台，无论您是专业设计师还是普通用户，都能通过简单几步创造出具有艺术感的图像作品 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-2746268292)\n\n#### 参要字帖 - [Github](https://github.com/giroudg)\n* :white_check_mark: [参要 AI - 诗词字帖](https://canyaoai.com/copybooks?from=1c7_chinese_independent_developer)：用诗词作为练字内容，又练字又温习诗词，双倍收获\n\n### 2025 年 3 月 20 号添加\n#### Duan - [Github](https://github.com/duanduanhh)\n* :white_check_mark: [VIEW PRE](https://viewpre.com/)：中国观景指数预测，当前提供泰山、黄山、武功山云海近三日指数预测，后续扩展更多景点指数预测。期待大家的旅行都不扫兴而归！\n* :x: [Tool Hut](https://tool-hut.com/)：在线工具箱，内页支持文本 DIFF、JSON 序列化、时间戳转换等小工具，让天下没有难用的工具。\n\n### 2025 年 3 月 19 号添加\n#### Ryan - [Github](https://github.com/Ryan10Yu)\n* :white_check_mark: [FLUX AI ART](https://fluxaiart.ai/)：基于 Flux 的图像生成网站\n* :x: [AI Hairstyle](https://aihairstyle.net/)：上传照片，用 AI 生成不同发型的图片，帮助您选择合适的发型\n\n### 2025 年 3 月 16 号添加\n#### jiangnanboy - [Github](https://github.com/jiangnanboy), [博客](https://jiangnanboy.github.io/)\n* :white_check_mark: [海嘉 AI 实验室智能应用](http://117.72.40.129:8001/)：表格问答，文字 OCR，表格图片结构识别等\n\n#### Jeremyym - [Github](https://github.com/Jeremyymxiao)\n* :white_check_mark: [AI Agents Directory](https://ai-agents-directory.com)：AI 智能体导航站\n* :white_check_mark: [Harry Potter House Quiz](https://harrypotterhousequiz.pro)：哈利波特分院测试\n* :white_check_mark: [Chinese Name Generator](https://chinese-name-generator.com)：给外国人起中文名，基于 DeepSeek V3\n* :white_check_mark: [Learn Kana](https://learnkana.pro)：学习日语平假名片假名, 基于 DeepSeek V3\n* :x: [AI Death Calculator](https://aideathcalculator.info)：用 AI 计算还剩多少寿命\n\n### 2025 年 3 月 15 号添加\n#### 橘子哥\n* :white_check_mark: [TempMail.Love](https://tempmail.love/)：即用即走的临时邮箱，保护你的个人隐私安全 \n\n#### Someuxyz - [Github](github.com/someu/aigotools) \n* :white_check_mark:  [Aigotools](https://github.com/someu/aigotools/blob/main/README.zh-CN.md)：开源导航站\n* :white_check_mark: [Similarlabs](http://similarlabs.com/)：洞察需求和流量，发现和对比你的下一个心仪工具\n\n### 2025 年 3 月 14 号添加\n#### jzhone(佛山)\n* :white_check_mark: [反斗限免](https://free.apprcn.com)：软件、游戏限免资讯网站\n* :white_check_mark: [BFP Calculator](https://bfpcalculator.com)：免费计算你的体脂率，并提供相应解决方案\n\n### 2025 年 3 月 13 号添加\n#### Go7hic - [Github](https://github.com/Go7hic)\n* :white_check_mark: [涂色乐园](https://apps.apple.com/us/app/coloringland/id6742505878?platform=ipad)：通过 AI 生成涂画的涂色应用 - [更多介绍](https://www.dyy.im/coloring-land)\n\n#### 7SaiWen(成都)\n* :white_check_mark: [SSH Monitor: SSH终端与服务器监控](https://apps.apple.com/cn/app/id6479361680)：SSH 远程云服务器/容器监控管理终端\n* :white_check_mark: [OpenTerm](https://apps.apple.com/cn/app/openterm/id1481149807)：终端模拟器, 口袋里的 Linux\n\n### 2025 年 3 月 12 号添加\n#### 超杰(河南)\n* :x: [SlideBrowser](https://deepthinkapps.com/zh/apps/slide-browser/)：轻量的滑动浏览器，给你不一样的浏览器交互体验\n\n#### suwenly(广州) - [Github](https://github.com/TravelTranslator/)\n* :white_check_mark: [Travel Translator](https://besttraveltranslator.com)：旅游翻译助手，实时语音转文字并翻译成多国语言，朗读翻译的结果，与外国友人无缝沟通\n\n#### CrisChr - [Github](https://github.com/CrisChr), [博客](https://red666.vercel.app/)\n* :x: [JSON Translator](https://jsontrans.vercel.app/)：用 DeepSeek-V3 帮助网站进行多语言翻译的工具，支持几十种国家的语言，只需提供 DeepSeek API key 并上传 i18n JSON 文件，选择要翻译的语言即可。服务于前端开发者。\n\n### 2025 年 3 月 8 号添加\n#### timerring - [Github](https://github.com/timerring)\n* :white_check_mark: [bilive](https://bilive.timerring.com/)：自动监听并录制 B 站直播和弹幕，7 x 24 小时无人监守录制、渲染弹幕、识别字幕、自动切片、自动上传、启动项目，人人都是录播员 - [开源地址](https://github.com/timerring/bilive)\n\n### 2025 年 3 月 7 号添加\n#### Peter - [Github](https://github.com/hx23840),\n* :x: [JustSEO](https://justseo.org/)：导航站，发现最佳 SEO 工具与资源，用于发现和比较顶级 SEO 工具、插件、软件和资源，以提升您的搜索排名\n\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)\n* :white_check_mark: [JetBrains Maple Mono](https://github.com/SpaceTimee/Fusion-JetBrainsMapleMono)：中英文完美 2:1 宽的 JetBrains Mono + Maple Mono 无衬线合成字体，工整，优雅，超高可读性\n\n#### howoii(上海) - [Github](https://github.com/howoii/SmartBookmark)\n* :white_check_mark: [Smart Bookmark](https://chromewebstore.google.com/detail/smart-bookmark/nlboajobccgidfcdoedphgfaklelifoa)：AI 智能书签管理插件，自动生成标签，语义化搜索，告别繁琐管理——用AI重构你的书签管理体验\n\n### 2025 年 3 月 6 号添加\n#### crischr(成都) - [Github](https://github.com/CrisChr), [博客](https://red666.vercel.app/)\n* :white_check_mark: [Formulas AI](https://formulas-ai.vercel.app/)：帮助用户生成 Excel 公式，基于 DeepSeek-V3 的 AI 工具产品（需要用户自己填入key）\n\n### 2025 年 2 月 28 号添加\n#### zhaoxiaozhao(杭州) - [Github](https://github.com/zhaoxiaozhao07)\n* :white_check_mark: [mouse-click](https://github.com/zhaoxiaozhao07/mouse-click)：带后台模式的 Windows 自动连点器\n* :white_check_mark: [Dynamic-photo-video-display-wall](https://github.com/zhaoxiaozhao07/Dynamic-photo-video-display-wall)：多宫格动态播放视频/照片\n\n### 2025 年 2 月 27 号添加\n#### Synexa AI - [Github](https://github.com/synexa-ai)\n* :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)\n\n#### SeaEpoch(安徽) - [Github](https://github.com/SeaYJ)\n* :white_check_mark: [MouseClick](https://github.com/SeaYJ/MouseClick)：鼠标连点器和管理工具，软件界面美观，操作直观，支持鼠标行为模拟，让用户在工作和游戏中实现高效自动化 \n\n### 2025 年 2 月 26 号添加\n#### 木易(武汉)\n* :x: [DeepSeek Chat](https://ai-chatbot.top/)：DeepSeek R1/V3 671B 满血版在线免费使用\n\n#### damaodog - [Github](https://github.com/damaodog)\n* :white_check_mark: [Midjourney Sref code 收集](https://mjsrefcode.com/)：Midjourney 的sref（风格一致性代码）收集库，现阶段已收集sref代码3000+\n\n#### Sven(昆明) - [Github](https://github.com/shensven)\n* :white_check_mark: [Swads](https://swads.app/)：群晖 Download Station 客户端，现代、原生、凭直觉再设计，支持 iOS / macOS\n\n### 2025 年 2 月 24 号添加\n#### Sawana(上海) - [Github](https://github.com/waitlistSawana)\n* :white_check_mark: [高能闪刻 | Highlight Pulse](https://highlightpulse.site/)：实时标记B站直播的高光时刻，一键导出记录数据，查看切片工具箱\n\n#### BHznJNs - [GitHub](https://github.com/BHznJNs)\n* :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/)\n\n#### Moldav(ShangHai) - [Github](https://github.com/[WebClocks](https://github.com/WebClocks))\n* :white_check_mark: [Online Web Clock](https://webclock.online/)：网页时钟 - 免费在线时钟和时间工具\n\n### 2025 年 2 月 23 号添加\n#### sinpo - [Github](https://github.com/JapaneseNameGenerator/JapaneseNameGenerator)\n* :white_check_mark: [日语名字生成器](https://japanesename-generator.com)：免费 AI 日文名字生成器！生成平假名、片假名、含义和发音\n\n### 2025 年 2 月 22 号添加\n#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey), [博客](https://coreychiu.com/)\n* :white_check_mark: [Image Translate AI](https://imagetranslate.ai)：AI 图片翻译软件，翻译 70 多种语言的图片文本，专为专业人士，电商商家打造。保持图片原始布局，扩大全球影响力，并简化本地化流程\n\n### 2025 年 2 月 20 号添加\n#### Ryan(北京) - [Github](https://github.com/Leochens)\n* :white_check_mark: [小帖](https://apps.apple.com/us/app/xiaotie-batch-image-generator/id6741154916)：iOS 端的模板批量生成图片的工具，支持表格文件和飞书多维表格同步\n\n### 2025 年 2 月 19 号添加\n#### 邱比特(大连) - [Github](https://github.com/MQbit)\n* :white_check_mark: [aiagents42.com](https://aiagents42.com/)：AI Agents 导航站\n\n### 2025 年 2 月 16 号添加\n#### Sen Zheng 郑越升 - [Github](https://github.com/dayinji)\n* :white_check_mark: [freaky-fonts.com](http://freaky-fonts.com/)：怪异字体生成工具，可以把普通的字符变成吸人眼球的字符，发到 Facebook/Instagram/Whatsapp/Twitter 等社交媒体，还有字符变换工具，可以按你喜欢的字体风格随机搭配，自定义字符的映射表/反转文本/打乱文本等\n\n### 2025 年 2 月 12 号添加\n#### nanshan(北京) - [Github](https://github.com/nansshan)\n* :white_check_mark: [图片切割神器 GridMaker ](https://gridmaker.co)：一键切割图片，完美适配社交媒体多图发布！\n\n#### yaolifeng0629 - [Github](https://github.com/yaolifeng0629)\n* :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)\n\n#### jianpingliu(上海)\n* :x: [WikiTok](https://wikitok.cc)：抖音风格的维基百科文章信息流\n\n### 2025 年 2 月 10 号添加\n#### nanshan(北京) \n* :white_check_mark: [NavFolders导航站](https://navfolders.com/)： 发现、组织和分享跨类别的最佳网站。您获取重要在线资源的一站式目的地\n\n#### ZHIYA(武汉)\n* :white_check_mark: [视频分割专业版](https://llcut.zhiyakeji.com/)：快速无损精准分割长视频音频, 手机版的 lossless-cut\n\n### 2025 年 2 月 8 号添加\n#### Q-Sansan\n* :white_check_mark: [Al Visibility](https://www.aivisibility.io/)：提供SEO、内容营销、网站分析等领域信息和工具的网站\n\n### 2025 年 2 月 7 号添加\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [BoilerplateHunt](https://boilerplatehunt.com)：SaaS模板导航站，找到最合适的模板，加速你的SaaS上线。\n\n### 2025 年 2 月 6 号添加\n#### yuesheng zheng(香港)\n* :white_check_mark: [SoBricks](https://sobricks.com/)：上传照片，即可将其转化为独一无二的 3D 积木。用户可以在线 3D 预览积木设计，和自由调整积木模型。平台提供可交互的积木搭建教程网页，帮助用户轻松完成创作，快来体验吧！ - [更多介绍](https://sobricks.com/pages/about-us)\n\n### 2025 年 2 月 4 号添加\n#### 罗一蛋(广州)\n* :white_check_mark: [慢图浏览](https://relaxpic.com/)：安卓相册（快速、简洁），内置相机、隐私空间、文件传输助手等功能，保护用户隐私\n\n#### wmin(北京)\n* :x: [Crop Image](https://cropimage.app)：图片裁剪工具（免费），支持裁剪框缩放、图片缩放、旋转、翻转、上下左右拖动调整位置，可以裁剪不用的图形、圆形、方形、心形、多边形等裁剪形状\n\n### 2025 年 1 月 29 号添加\n#### geektao1024 - [Github](https://github.com/geektao1024)\n* :white_check_mark: [学习 Cursor](https://learn-cursor.com/)：Cursor AI 编程助手学习平台——专业、全面，完全开源！Learn Cursor 是一个致力于帮助中文开发者更好地使用 Cursor AI 编程助手的专业文档平台。无论您是刚接触 Cursor 的新手，还是想深入了解高级功能的资深用户，这里都能为您提供清晰详实的中文教程和实用指南\n\n#### Xibobo(上海) \n* :x: [在线计数器](https://www.clickcounter.online/)：计数器工具，支持手机端和PC端免费使用，可以在线计数并分享，轻量级且用户友好\n\n### 2025 年 1 月 24 号添加\n#### Benson Gao(北京) \n* :x: [Supametas.AI](https://supametas.ai)：从任何非标准化目标处理为适用 LLM RAG 的结构化数据，更方便的搜集、构建、预处理你的行业领域数据集并集成到 LLM RAG 检索知识库 - [更多介绍](https://supametas.ai/zh/blog/4)\n\n#### JasmineChzI(深圳) \n* :white_check_mark: [PhotoG](https://photog.art/)：专为电商卖家打造的 AI 摄影工具。轻松制作专业级产品图片，自定义背景，优化视觉效果，助力销售增长\n\n### 2025 年 1 月 23 号添加\n#### 前端小周(郑州) -  [个人主页](https://www.inav.site/)\n* :white_check_mark: [酒桌游戏789](https://www.inav.site/static/mp/789.png)：适合多人一起玩，掷出7点的倒酒(随意量)，掷出8点的喝杯中酒的一半，掷出9点的把杯中酒全部喝完。掷出两个点数相同轮换顺序颠倒，两个1可以指定人喝酒。可切换二人情侣模式\n\n#### wo-zx(广州) \n* :white_check_mark: [优好搜·SEO优化工具](https://www.uhaoseo.com)：免费精准诊断网站 SEO 状况，提供专业审查报告，致力保障网站和品牌在搜索引擎内的可见性 - [更多介绍](https://www.uhaoseo.com/seo-analyzer)\n\n### 2025 年 1 月 22 号添加\n#### moldav(上海) - [Github](https://github.com/HahaHa0099/MinuteTimer) \n* :white_check_mark: [Minute Timer](https://minutetimers.net/)：在线计时器（轻量级且用户友好）\n\n### 2025 年 1 月 14 号添加\n#### lezhu(上海)\n* :white_check_mark: [Staying](https://staying.fun)：交互式可视化 Python & Javascript 代码 - [更多介绍](https://staying.fun/zh/docs/getting-started)\n\n#### Sean(成都) - [Github](https://github.com/ShurshanX)\n* :white_check_mark: [Image Describer](https://imagedescriber.app/)：提供对艺术作品的深入分析（背景、寓意、构图元素），帮助用户更深层次地理解和欣赏艺术创作和评价编写\n\n#### 天之蓝源(成都) - [Github](https://github.com/Hacker233/resume-design)\n* :white_check_mark: [猫步简历](https://maobucv.com/)：简历制作神器（开源免费）\n\n### 2025 年 1 月 13 号添加\n#### zijiuok - [Github](https://github.com/zijiuok), [Twitter/X](https://x.com/zijiuok)\n* :white_check_mark: [小报童排行榜](https://xiaobaoto.com/ranking/)：哪些付费专栏最赚钱\n\n### 2025 年 1 月 12 号添加\n#### SEEEEAL(西安) - [Github](https://github.com/seeeeal)\n* :white_check_mark: [仓鼠工具箱](https://www.hamstertools.org)：各类在线工具，用完即走 - [更多介绍](https://www.hamstertools.org/all_tools)\n\n#### Ethan\n* :x: [Crop Image](https://cropimage.me/)：图片裁剪工具（免费），所有操作都在本地完成，更加隐私和安全。支持裁剪框缩放、图片缩放、旋转、翻转、上下左右拖动调整位置，内置常见的裁剪框比例，缩放时始终保持比例不变，使用更省心\n\n#### RolloTomasi\n* :white_check_mark: [whatDoILookLike](https://whatdoilooklike.online/)：在电影或剧集中找出与你相似的角色并一键换脸\n\n### 2025 年 1 月 7 号添加\n#### 韩老师脑暴\n* :x: [aihinto](https://aihinto.com/)：为日语市场提供 AI 导航和 AI 资讯\n\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Arnis](https://arnis.app/)：将现实世界地点转变为 Minecraft 场景地图的工具\n\n### 2025 年 1 月 6 号添加\n#### pang-xf - [Github](https://github.com/pang-xf)\n- :white_check_mark: [去水印去多多](https://img.pxfe.top/v2/8BjjwDX.jpeg)：复制链接存去水印视频的小程序，支持批量解析转存（免费）\n\n### 2025 年 1 月 4 号添加\n#### GFE - [Github](https://github.com/duanze)\n- :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)\n\n### 2024 年 12 月 30 号添加\n#### Justin3go(重庆) - [Github](https://github.com/Justin3go)， [Twitter](https://x.com/Justin1024go)\n* :white_check_mark: [Template0](https://template0.com/)：收录了近千份免费的网站模板，包含用途、技术栈、预览截图、描述等信息，方便开发者快速找到适合自己的模板以快速上线\n\n### 2024 年 12 月 28 号添加\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :x: [Gemini Coder](https://geminicoder.org/)：AI 应用代码生成器，基于提示词一键生成网站应用\n* :x: [DeepSeek v3](https://deepseekv3.org/)：DeepSeek v3 是一个拥有 671B 参数规模、突破性的大规模语言模型，这是介绍它的网站\n\n### 2024 年 12 月 26 号添加\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [TRELLIS 3D AI](https://trellis3d.co/)：将图片转换为 3D 资产的免费 AI 工具\n* :x: [FLUX Style Shaping](https://fluxstyleshaping.com/)：基于 Flux 的图像风格转化工具，将结构元素与艺术风格相结合来转换图像\n\n#### 简具科技(杭州)\n* :x: [八爪鱼收纳](https://www.bzysn.top)：智能物品管理小程序，帮助您轻松管理家中各类物品，让生活更加井然有序\n\n### 2024 年 12 月 24 号添加\n#### KIAN\n* :white_check_mark: [XShorts](https://xshorts.pro/)：一键将优质 Tweet 转换为数字人短视频。定制化声音、AI背景图片，自动化发布。轻松创作内容优质的短视频\n\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [Free Open Graph Generator](https://og.indiehub.best/)：在线Open Graph图片制作工具，支持多种布局，支持调整文字+背景，支持导出PNG，免费无水印\n\n### 2024 年 12 月 23 号添加\n#### 前端小周(郑州) - [github](https://github.com/webjuzi), [博客](https://www.inav.site/)\n* :white_check_mark: [短剧大王](https://www.inav.site/v)：短剧爱好者的免费观影神器，带你畅享短剧盛宴！本应用完全免费！即可尽情观看海量短剧。如寻觅无果？别担心！只需轻松留言告知您心仪的短剧名称，我们会尽快为您找到资源 - [API 免费开放](https://www.inav.site/mp#/pageC/api/api)\n\n#### Corey Chiu - [GitHub](https://github.com/iamcorey), [博客](https://coreychiu.com)\n* :white_check_mark: [GitHub Cards](https://github.cards)：将你的 GitHub 数据转换成漂亮易分享的卡片图\n\n### 2024 年 12 月 22 号添加\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [Mkdirs](https://mkdirs.com/)：最好的导航站模板，默认集成注册登录、支付、邮件、博客、导航站等所有功能\n* :white_check_mark: [IndieHub](https://indiehub.best/)：最好的独立开发者导航站，收录400+独立开发工具，支持开发者提交产品\n\n### 2024 年 12 月 17 号添加\n#### joyoyao(上海) - [Github](https://github.com/joyoyao)\n* :white_check_mark: [帽子云](https://www.maoziyun.com/)：GitHub Pages / Cloudflare Pages 的国产替代方案，集成化的静态网站快速创建平台 - [更多介绍](https://www.maoziyun.com/docs/introduction)\n\n### 2024 年 12 月 14 号添加\n#### Leo (上海)\n* :white_check_mark: [BlueSky 工具目录站点](https://bskyinfo.com)：目前最完整的 BlueSky 工具收录站点\n\n### 2024 年 12 月 12 号添加\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Marvel Rivals Characters](https://marvelrivalscharacters.com/)：漫威对决游戏角色指南，角色完整清单，职业、联盟、角色难度等信息，发现最喜欢的角色\n\n### 2024 年 12 月 11 号添加\n#### Aining（合肥）\n* :white_check_mark: [UnblurImage AI](https://unblurimage.ai/zh)：图片无损放大变清晰网站（免费无广）\n\n#### Terry(上海) - [Github](https://github.com/jamieme)\n* :white_check_mark: [PodExtra AI](https://www.podextra.ai/)：播客内容摘要生成器（有文字稿和思维导图） - [更多介绍](https://www.podextra.ai/)\n\n### 2024 年 12 月 10 号添加\n#### cuiheng511 - [Github](https://github.com/cuiheng511)\n* :white_check_mark: [Autoppt](https://autoppt.com)：AI 演示文稿生成工具，彻底改变了您创建演示文稿的方式。凭借丰富的模板和强大的功能，让您轻松在几分钟内制作出令人惊叹的演示文稿\n\n### 2024 年 12 月 8 号添加\n#### chrox - [Github](https://github.com/chrox/readest)\n* :white_check_mark: [Readest](https://readest.com?utm_source=indiecn&utm_medium=referral&utm_campaign=post)：阅读软件（极简设计、开源、跨平台） - [更多介绍](https://github.com/chrox/readest)\n\n#### underwoodxie - [Github](https://github.com/underwoodxie)\n* :x: [一键将 Youtube 视频转成 SEO 友好的文章](https://video-to-article.com/)：自己在做网站时发现有些 Youtube 视频的质量很好，想把内容变成文字放在自己的网站上，每次都需要转好几个工具，因此做了一个解决自己问题的工具，如果大家有需要可以使用。\n\n### 2024 年 12 月 7 号添加\n#### Ovelv（西安）- [Github](https://github.com/ovelv)\n* :white_check_mark: [OnionAI](https://onionai.so)：AI 聚合搜索引擎，轻松切换不同的 AI 搜索引擎\n\n### 2024 年 12 月 6 号添加\n#### canghaicheng(苏州) \n* :x: [桌面世界](https://www.zhuomianshijie.com/)：3D 聊天机器人桌面应用\n\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :x: [Genie 2](https://genie2.co/)：大规模基础世界模型，能将单张图像转换为完全交互式的 3D 环境\n\n#### Fooying - [Github](https://github.com/fooying), [博客](fooying.com/?ref=chinese-independent-developer)\n* :x: [SECSOSO 安全搜搜](https://secsoso.com/)：网络安全垂直领域AI搜索，安全搜搜，搜索安全 - [更多介绍](https://www.producthunt.com/products/secsoso)\n\n#### Yue - [Github](https://github.com/yuegao04)\n* :white_check_mark: [BlockBlastCheat](https://blockblastcheat.com/)：为你的 Block Blast 游戏提供最佳解法\n\n### 2024 年 11 月 24 号添加\n#### 玩具工匠 - [Github](https://github.com/HiToysMaker)\n* :white_check_mark: [字玩](https://www.font-player.com)：字体设计工具 - [源代码](https://github.com/HiToysMaker/fontplayer)\n\n#### zebrapixel - [Twitter](https://x.com/xdkc2000)\n* :x: [像素画家](https://apps.apple.com/app/pixel-one/id6504689184)：简单易用的像素画编辑器 - [更多介绍](https://www.zebrapixel.com)\n\n### 2024 年 11 月 22 号添加\n#### jianpingliu - [Github](https://github.com/jianpingliu)\n* :white_check_mark: [ExtensionsFox](https://extensionsfox.store)：几个 Instagram 自动化运营小工具 - [更多介绍](https://github.com/asterism-software/extensionsfox.store)\n* :white_check_mark: [AMZ Downloader](https://amzdownloader.com)：Amazon 产品图片和视频下载小工具 - [更多介绍](https://github.com/asterism-software/amzdownloader.com)\n* :white_check_mark: [docgenie](https://docgenie.co.uk)：将 Kindle Scribe 笔记本直接分享至各种云存储服务 - [更多介绍](https://github.com/asterism-software/docgenie.co.uk)\n\n### 2024 年 11 月 21 号添加\n#### AlkaidWaong - [Github](https://github.com/AlkaidWaong)\n* :x: [BestAffiliate](https:www.bestaffiliate.link)：精选的软件联盟计划的目录，帮助科技数码创作者获取更好的收益。\n\n#### Q-Sansan - [Github](https://github.com/Q-Sansan)\n* :white_check_mark: [OnlyFansKit](https://www.onlyfanskit.com/)：专为 OnlyFans 创作者设计的免费工具平台。其目的是帮助创作者轻松创建和管理自己的内容和账户，提升在 OnlyFans 上的成功机会。通过这个平台，用户可以生成独特的名字、用户名以及吸引人的个人简介。此外，OnlyFansKit 还提供自动生成欢迎消息的功能，让粉丝初次访问时便能感受到创作者的独特魅力。同时，该平台配有税收计算器，帮助创作者轻松完成财务规划与管理，为创作者节省时间与精力。\n\n### 2024 年 11 月 19 号添加\n#### khaos - [Github](https://github.com/cxykhaos), [博客](https://khaos.net.cn)\n* :white_check_mark: [khaos 电吉他社](https://www.khaos.net.cn)：电吉他谱分享网站（有电吉他爱好的程序员做的）\n\n### 2024 年 11 月 17 号添加\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [导航站模板](https://mkdirs.com/)：轻松创建并部署上线的导航站模板，默认集成注册登录、支付、邮件、博客、导航站等所有功能\n\n### 2024 年 11 月 16 号添加\n#### my19940202 - [Github](https://github.com/my19940202)\n* :white_check_mark: [网页版屏保小工具](https://www.screensaver.top/zh)\n\n### 2024 年 11 月 12 号添加\n#### vlv - [Github](https://github.com/livv)\n* :white_check_mark: [vPaste](https://apps.apple.com/cn/app/vpaste/id6444913968)：Mac 平台优秀的剪切板工具\n\n### 2024 年 11 月 10 号添加\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)\n* :white_check_mark: [Sheas Cealer](https://github.com/SpaceTimee/Sheas-Cealer)：SNI 伪造工具，无需代理即可合法加速 Github, Steam, Pixiv 等网站的直连，让你的网络冲浪畅快无阻\n\n#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey)\n- :white_check_mark: [Best Directories](https://bestdirectories.org)：导航站的导航站，网站汇集收录各类别各领域的优质导航站，帮助用户发现各领域优质的导航站，从而找到好用的产品。并且收录各类优质打榜平台，不止 ProductHunt，帮助产品更快启动。\n\n### 2024 年 11 月 9 号添加\n#### Leo - [Github](https://github.com/andylearnai)\n- :white_check_mark: [TalkingAvatar](https://www.talkingavatar.ai/)：一键生成 AI 数字人视频的平台，支持多语言对话、表情动作定制，可快速创建个性化数字分身用于营销、教育等场景\n\n### 2024 年 11 月 5 号添加\n#### 94R7(桂林) - [Github](https://github.com/WtecHtec), [博客](https://r7.nuxt.dev/)\n* :white_check_mark: [SparkleEasy](https://sparkleeasy.pages.dev/)：macOS 开发者的效率工具，一键生成 Sparkle 更新配置，快速管理应用权限，让开发更简单 - [更多介绍](https://sparkleeasy.pages.dev)\n\n#### eddilexiok(上海)\n* :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)\n\n### 2024 年 11 月 3 号添加\n#### Zero24 - [Github](https://github.com/Liu-Lixin)\n* :white_check_mark: [Recap](https://recapall.app/)：帮助你整理杂乱的内容，节省时间的 Chrome 插件！把网页和 PDF 转化为有趣的视觉摘要，包括思维导图、时间线和表格总结。适合学生、专业人士和内容创作者！\n\n### 2024 年 11 月 2 号添加\n#### 食谱甄选（广州） - [Github](https://github.com/xiaocp)\n* :white_check_mark: [食谱甄选](https://xiaocp.oss-cn-shenzhen.aliyuncs.com/images/applet/wx_cookbook.png)：百万菜谱任君选择，专为下厨房而设计的菜谱 APP，菜谱精心甄选佳而全。每天纠结吃啥菜谱，根据个人口味食材智能推荐 (微信小程序)\n\n### 2024 年 10 月 31 号添加\n#### Corey Chiu(深圳) - [Github](https://github.com/iamcorey)\n* :white_check_mark: [AI Best Tools导航站](https://aibest.tools/)：收录各种优质的 AI 产品工具，帮用户找到最优质且好用的 AI 产品，同时助力 AI 产品开发者展示自己产品。并且网站定时爬取 Product Hunt 等优质产品平台，给 AI 产品开发者提供开发及需求的思路。欢迎大家来提交自己的 AI 产品及发掘更多优质的 AI 工具\n\n### 2024 年 10 月 27 号添加\n#### MrHuZhi - [Github](https://github.com/MrHuZhi)\n* :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)\n\n### 2024 年 10 月 26 号添加\n#### Ethan Sunray\n* :white_check_mark: [Temp Mail](https://tempmail.la/)：临时邮箱(免费)，保护隐私安全，避免垃圾邮件骚扰，打开就可以使用，无需登录或注册。\n* :white_check_mark: [AI Detector](https://aidetector.tech/)：验证文本和图片是否由 AI 生成，图片和 PDF 等文档已支持 [C2PA](https://c2pa.org/) 内容凭证校验。（[C2PA](https://c2pa.org/) 是一项创新的开放技术，旨在提供在线内容的详细背景信息，增强数字内容的可信度和透明度，目前 OpenAI、Microsoft、Heygen 等知名公司都已经支持）\n\n#### 小学后生(杭州) - [Github](https://github.com/Dnevend), [个人主页](https://dnevend.site/)\n* :white_check_mark: [X-Comfort-Browser - 浏览器插件](https://x-comfort-browser.xyz/)：用于浏览内容平台(推特、知乎)时，模糊媒体资源，屏蔽广告。专注信息获取，减少视觉干扰，获得互联网噪音下的注意力主动权，同时避免公共场合出现尴尬的场景。- [开源地址](https://github.com/dnevend/x-comfort-browser/)\n\n### 2024 年 10 月 25 号添加\n#### JARK006 - [Github](https://github.com/jark006)\n* :white_check_mark: [jarkViewer](https://github.com/jark006/jarkViewer)：Windows 平台看图软件\n* :white_check_mark: [FtpServer](https://github.com/jark006/FtpServer)：Windows 平台 FTP 服务器\n* :white_check_mark: [小天气](https://github.com/jark006/weather_widget)：安卓平台桌面天气小部件\n\n#### Q-Sansan\n* :white_check_mark: [Img2Video](https://img2video.ai/)：用文本或图像生成短视频（AI）非常适合社交媒体，立即开始创作爆款内容吧！\n\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Bluesky Video Downloader](https://blueskyvideodownloader.org/)：Bluesky 视频下载器，输入 Bluesky 文章地址，即可将文章中的视频下载到本地\n\n#### Yue - [Github](https://github.com/yuegao04)\n* :white_check_mark: [Yes/No 塔罗 AI](https://yesnotarot.org/)：融合 AI 技术与塔罗洞见，快速获得\"是\"与\"否\"解答\n* :white_check_mark: [ProjectHunt](https://projecthunt.me/)：发现与分享独立项目\n\n#### kevin 不会写代码 - [Twitter](https://x.com/PennyJoly)\n* :x: [CheapGpt - 企业级 I 模型 API](https://ai.linktre.cc)：AI 接口调用平台 (稳定、高效、高并发、便宜、企业级）支持 OpenAI、Claude、Gemini 等主流 AI 大模型\n\n### 2024 年 10 月 23 号添加\n#### Blushyes(北京) - [Github](https://github.com/blushyes)\n* :white_check_mark: [如快](https://sofast.fun)：启动器软件（基于 Tauri 开发，支持 Windows 和 Mac），UI 风格类似 Raycast，对键盘操作友好，大幅提高办公学习效率，支持快捷链接、剪贴板管理等功能并支持开发自定义扩展\n\n#### meetqy(成都) - [Github](https://github.com/meetqy)\n* :x: [aiseka.com](https://aiseka.com)：色彩管理工具，有颜色的介绍，色卡制作，色卡推荐 3 个主要功能\n\n### 2024 年 10 月 22 号添加\n#### fengmao(广州)\n* :white_check_mark: [liusha tech detector](https://liusha.org/)：分析技术栈，提交一个网址，分析该网站用的技术栈，是否 CMS，用什么编程语言，数据分析工具等\n\n #### QC2168(揭阳) - [Github](https://github.com/QC2168), [博客](https://island-record.vercel.app/)\n* :white_check_mark: [MIB](https://github.com/QC2168/mib)：安卓数据备份软件，根据配置自动将移动设备上的数据文件迁移备份至电脑上，支持增量备份，节点配置\n\n#### Nico（长沙）- [Github](https://github.com/yijianbo)\n* :x: [Subrise](https://subrise.co/zh)： Subrise 精心为出海创业者打造 Reddit 运营工具，挑选并分类优质的 Reddit 资讯，运营干货。我们帮助你发现高质、与业务匹配的 Reddit 流量社区，分享一线实操运营干货，帮助您实现 Reddit 流量掘金。\n\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Hurricane Simulator](https://hurricanesimulator.org/)：飓风模拟器，根据不同的季节模拟飓风造成的影响、破坏，提高灾害意识\n\n### 2024 年 10 月 20 号添加\n#### zhiya(武汉)\n* :white_check_mark: [Image to excel](https://itexcel.izhiyakeji.com/zh-Hans/)：识别图片中的表格并转成可编辑的 Excel 文档\n\n### 2024 年 10 月 19 号添加\n#### xiaocui723(广东) - [Github](https://github.com/webgamehub/sprunked)\n* :white_check_mark: [Sprunked](https://sprunked.online/)：基于 Scratch 的在线音乐游戏（免费），为 Incredibox 引入创新的玩法和新角色，探索无限创造可能\n\n#### Shanshi - [Github](https://github.com/Shanshi66)\n* :white_check_mark: [Notion Exporter](https://notionexporter.com/)：将 Notion 内容转成卡片，方便在社交媒体分享 - [更多介绍](https://notionexporter.com/zh-hans/post/zh-hans-notion-to-redbook)\n\n### 2024 年 10 月 18 号添加\n#### Honwhy Wang - [Github](https://github.com/honwhy)\n* :white_check_mark: [扇贝单词助手V3](https://shanbay.pages.dev)：专为扇贝网用户打造的 Chrome 插件，帮助您在任何网页上轻松高效地学习英语 - [Github](https://github.com/honwhy/shanbay-ext)\n\n#### Ethan Sunray\n* :white_check_mark: [Inpodcast AI](https://inpodcast.ai)：将文档转成播客音频，支持 PDF、Word、Markdown 和 TXT 文件格式\n\n#### Kajian(佛山)\n* :white_check_mark: [MvpFast](https://www.mvpfast.top)：帮助独立开发者快速构建 MVP 的开发模板，包含文字+视频教程，从0到1构建网站应用\n\n### 2024 年 10 月 17 号添加\n#### xibobo(上海) - [Github]( https://github.com/my19940202),[X(Twitter)](https://x.com/xishengbo),[即刻](https://web.okjike.com/u/4930384A-ABE5-4856-BB23-E4A9DC2BE526)\n* :x: [iFinder](https://www.ifinder.one)：网页关键词高亮插件，支持多个关键词高亮和定位，在 Google 搜索关键词时会自动高亮\n* :white_check_mark: [网页微信书评插件](https://chromewebstore.google.com/detail/%E5%BE%AE%E4%BF%A1%E8%AF%BB%E4%B9%A6%E8%AF%84%E8%AE%BA%E6%8F%92%E4%BB%B6/kfjimgaoegibikoojcbnkbffkongnoep)：微信读书网页版本显示评论的插件，解答阅读中的困惑，了解他人的见解，不做一个孤独的阅读者\n\n### 2024 年 10 月 16 号添加\n#### xingstarx(北京) - [Github](https://github.com/xingstarx), [博客](https://www.xingstarx.top)\n* :white_check_mark: [图片分割器](https://imagesplitter.vip/zh)：创建 Instagram 拼图效果以及微信九宫格效果以及有图片分割需求的场景。支持批量分割\n\n#### xiaocui723(广东) \n* :white_check_mark: [Abgerny](https://abgerny.net)：Abgerny 是粉丝自制模组，拥有超现实节奏、古怪角色和无限的创意创作可能性。\n\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :white_check_mark: [Fast Food Simulator](https://fastfoodsimulator.co)：快餐店模拟经营游戏，可在线免费玩\n\n### 2024 年 10 月 15 号添加\n#### qiweiii - [Github](https://github.com/qiweiii)\n- :white_check_mark: [Text Search Pro](https://chromewebstore.google.com/detail/lfknakglefggmdkjdfhhofkjnnolffkh)：文本搜索 Chrome 插件，支持网页中进行大小写敏感和整词的文本搜索\n\n#### 咕噜不爱猫(杭州) - [Github](https://github.com/wangjiegulu)\n* :white_check_mark: [Biofy](https://Biofy.cn)：定制你的个人主页，聚合你的社交信息，展示你的个人作品 - [示例主页](https://biofy.cn/wangjiegulu)\n\n### 2024 年 10 月 14 号添加\n#### 疯狂的小波(武汉) - [Github](https://github.com/MuYiBo)\n* :x: [Hawthorn Game](https://hawthorngame.org)：介绍最新的沙盒游戏 Hawthorn，还可以在线玩相似游戏\n\n#### biboom(广州)\n* :white_check_mark: [Ranking Tabs](https://chromewebstore.google.com/detail/ranking-tabs/nfnfblfhnipebcbicjapboccdabdimfa)：浏览网站次数排行榜 Chrome 插件\n\n### 2024 年 10 月 13 号添加\n#### 阿凯呵 - [博客]( https://www.sodair.top)\n* :white_check_mark: [AI 形象照](https://luna-headshot.sodair.top/)：1 张照片轻松制作您的 AI 简历形象照，支持电脑摄像头拍摄 - 基于[开源AI换脸系统](https://github.com/loxi-opensource/luna-swapping)搭建\n\n### 2024 年 10 月 10 号添加\n#### 风巢森淼(北京) - [Github]( https://github.com/wincatcher), [博客]( https://okjk.co/q4mQVu)\n* :white_check_mark: [投资策略模拟器]( https://investment-simulator.toolsnav.top)：帮助投资者和学习者模拟和比较不同投资策略在各种市场趋势下的表现。该工具通过直观的可视化界面和详细的数据分析，让用户能够深入了解各种投资策略的优劣，从而做出更明智的投资决策 - [更多介绍](https://www.cnblogs.com/hackersay/articles/18455394/investment-strategy-simulator)\n\n#### 诸葛子房\n- :white_check_mark: [Image Splitter](https://image-splitter.online)：免费在线图像分割工具，将图片切分多块并下载\n\n#### whinc - [Github](https://github.com/whinc)\n- :white_check_mark: [小而美工具](https://whinc.github.io/ucalc-website)：有温度的微信小程序，万年历/老黄历/公历/农历/佛历/道历/节气/节日/儿童(0-7岁)生长评估/青少年(7-18岁)生长评估/成人肥胖评估/亲戚称呼/科学计算器/法定退休年龄计算器/手电筒/DNF小助手 - [Github](https://github.com/whinc/ucalc-website)\n\n#### handsometong(厦门)\n- :white_check_mark: [Poster Generator](https://postergenerator.online)：海报生成器，用 Poster Generator 创建令人惊叹的定制海报，个人或商业用途均可免费使用\n\n#### caorushizi - [Github](https://github.com/caorushizi/mediago)\n- :white_check_mark: [mediago](https://downloader.caorushizi.cn/?form=github)：在线视频下载，m3u8 视频提取工具 - [更多介绍](https://github.com/caorushizi/mediago)\n\n### 2024 年 10 月 9 号添加\n#### huiwan-code - [Github](https://github.com/huiwan-code)\n- :white_check_mark: [EzyGraph](https://www.ezygraph.com)：用 AI 将博客内容转化为信息图。提升内容的可读性和互动性，使复杂的内容变得简单直观。通过丰富的模板和便捷的编辑器，用户可以轻松创建吸引眼球的视觉内容，适合用于社交媒体、营销推广和品牌宣传\n\n#### Kevin（长沙）\n- :white_check_mark: [海投简历](https://mengsi.online)：一键海投简历的工具，提升找工作的效率，节省心智负担\n\n### 2024 年 10 月 6 号添加\n#### Song(广东)\n- :white_check_mark: [Colorbox Mustard](https://colorbox-mustard.com/)：受 Incredibox 启发的互动音乐创作平台,结合了生动的视觉效果和有趣的声音设计,为用户提供独特的创意体验\n\n### 2024 年 10 月 2 号添加\n#### yvonuk - [推特](https://twitter.com/mcwangcn)\n- :white_check_mark: [Web AI助手](https://web.stockai.trade)：极简、免费、易用的 ChatGPT。无需注册，Email 接码登录，GPT-4o-mini 模型免费使用，支持 GPT-4o 模型，支持实时联网\n\n#### xiaocui723(佛山) \n* :white_check_mark: [Sprunki Incredibox](https://sprunkiincredibox.net)：在线互动创作音乐的游戏，Sprunki Incredibox 提供简单的拖放系统，允许玩家将不同的声音、人声和节拍混合到他们的自定义曲目中。每个角色都代表着独特的音乐元素，使每首作品都真正个性化\n\n#### 0xJoanne - [Github](https://github.com/0xjoanne)\n* :white_check_mark: [QRCode.fun](https://qrcode.fun)：在线二维码生成工具\n\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :white_check_mark: [高亮“广告”](https://github.com/DuckDuckStudio/highlight-ad-extension)：用于高亮特定页面中的“广告”二字的扩展 - [效果文档](https://duckduckstudio.github.io/highlight-ad-extension/#/effect)\n\n### 2024 年 9 月 30 号添加\n#### Frey(深圳) -  [博客](https://5ea.org)\n* :white_check_mark: [IP.IM](https://ip.im)：简洁准确的 IP 信息查询网站，高精度的 IP 查询，支持 curl\n\n### 2024 年 9 月 28 号添加\n#### xurenda(北京) - [Github](https://github.com/xurenda)\n* :white_check_mark: [enjoy-player](https://github.com/xurenda/enjoy-player)：在线视频播放器，支持 Web 网页和 Windows、Mac、Linux 桌面应用。主要用于 CMS 视频采集站资源的在线浏览，实现了 HLS 视频流（m3u8）的在线播放\n\n### 2024 年 9 月 27 号添加\n#### 风巢森淼(北京) - [Github](https://github.com/wincatcher), [博客](https://okjk.co/q4mQVu)\n* :white_check_mark: [主打“高颜值”、“说人话”的开源许可证选择器](https://open-source-license-chooser.toolsnav.top)：通过一系列 通俗易懂 问题帮助用户选择适合自己的开源许可证。网站另外包含 许可证比较器 和 许可证使用情况图表，为用户提供直观且立体的开源许可证信息 - [更多介绍]( https://juejin.cn/post/7418548134593527817)\n\n#### yuesheng zheng(深圳)\n* :white_check_mark: [SoColoring](https://www.socoloring.com)：AI 驱动的可打印填色稿生成平台，支持文本生成填色稿、AI一键上色等功能，同时还有丰富的免费填色稿图库供用户自由下载，欢迎来这里寻找填色的乐趣\n\n### 2024 年 9 月 26 号添加\n#### xiaocui723 (佛山)\n* :white_check_mark: [OkeiAI](https://okeiai.com)：AI 导航站，内容有 AI 生成。目前免费收录，只需添加我们的 dofollow 反链即可。收录产品不限于 AI 产品\n\n#### benjamin（北京）- [Github](https://github.com/settings/profile)\n* :white_check_mark: [TikTok Voice Generator](https://tiktokvoice.net)：生成 TikTok 热门配音音效的文本转语音工具\n\n### 2024 年 9 月 25 号添加\n#### Sawana Huang\n* :white_check_mark: [SeeWhatNewAI](https://www.seewhatnewai.com): AI 产品目录、AI 导航站。搜集热门和用户提交的 AI 相关网站产品。从期望用户、发现的问题和解决方案等方面简单分析这些产品，发现合适的 AI 工具\n\n### 2024 年 9 月 24 号添加\n#### Ethan Sunray\n* :white_check_mark: [Random Pokemon Generator](https://randompokemongenerator.me)：宝可梦图片生成器，支持从 1400+ 宝可梦角色中随机生成，可自由修改类型、区域和生成数量等。输入你想象中的宝可梦，一键生成，支持 2D 和 3D 风格。\n\n#### Nebula\n* :white_check_mark: [Tabbiy](https://tyruslockwood.github.io)：管理浏览器标签的扩展程序，集成自动分组功能，可根据使用习惯定制分组规则。集成快捷键切换最近使用的标签功能，以及个性化设置。让您在工作和生活中告别标签杂乱，提高效率且改善浏览体验。\n\n### 2024 年 9 月 23 号添加\n#### loggerhead - [Github](https://github.com/loggerhead)\n* :white_check_mark: [JSON For You](https://json4u.cn)：JSON 在线可视化与处理工具。不仅支持常规的 JSON 处理，包括格式化/美化、最小化、校验、比较。还支持用图或表可视化浏览 JSON 数据，支持语义化/结构化比较两个 JSON 数据的差异，支持文本比较非 JSON 文本，支持将 JSON 与 CSV 互转，并且支持在线使用 jq。\n\n### 2024 年 9 月 22 号添加\n#### Ethan Sunray（纽约）\n* :white_check_mark: [Compress JPG](https://compressjpg.io)：免费图片压缩工具，支持压缩 JPG、JPEG、PNG、WebP、GIF、AVIF、JXL 和 QOI 格式的图片，无需注册或登录。压缩过程在浏览器端完成，最多可同时处理多达 1000 个图片文件。文件永远不会离开您的设备，确保完全的隐私。可将压缩结果下载为 ZIP 压缩包。\n\n### 2024 年 9 月 21 号添加\n#### ConstantLove - [Github](https://github.com/ConstantLove)\n* :white_check_mark: [SenGen - AI句子生成器](https://aisengen.com)：根据您的输入主题生成句子。无论您是作家、学生，还是单纯喜欢玩转语言的人，我们的工具都能提供快速高效的写作增强方式。\n\n#### Amyang(美国) - [Github](https://github.com/AmyangXYZ), [博客](https://amyang.dev)\n* :white_check_mark: [MiKaPo](https://mikapo.amyang.dev)：AI 在线动捕控制 MMD 纸片人模型 - [更多介绍](https://github.com/AmyangXYZ/MiKaPo)\n\n### 2024 年 9 月 20 号添加\n#### Q-Sansan\n* :white_check_mark: [OC Maker](https://www.ocmaker.net)：用 AI 生成原创角色图像\n\n### 2024 年 9 月 18 号添加\n#### 风巢森淼(北京) - [Github]( https://github.com/wincatcher), [博客]( https://okjk.co/q4mQVu)\n* :white_check_mark: [改革后法定延迟退休年龄计算器 & 退休倒计时工具](https://daojishi.fun)：帮助用户轻松计算退休时间并以有趣的方式倒数至退休日。我们的目标是让用户以积极乐观的态度面对工作和生活 - [更多介绍](https://juejin.cn/post/7415651555120824354)\n\n### 2024 年 9 月 14 号添加\n#### Kestrel - [Github](https://github.com/kestrela)\n* :white_check_mark: [退休年龄计算器](http://test.kestrel-task.cn/)：按照《关于实施渐进式延迟法定退休年龄的决定》附表对照关系，您通过法定退休年龄计算器，选择出生年月、性别及人员类型，即可计算出对应的改革后法定退休年龄、改革后退休时间、延迟月数\n\n### 2024 年 9 月 10 号添加\n#### Saga (Guangzhou) - [Github](https://github.com/s87343472)\n* :white_check_mark: [Show HN Today](https://showhntoday.com)：汇集 HackerNews 中热门项目的网站。每天从 Hacker News 平台中提取最有趣、最创新的项目和新闻，并通过简洁的界面展示，帮助用户轻松跟踪技术界的最新趋势。无论你是开发者、创业者还是技术爱好者，Show HN Today 都为你提供一个了解前沿技术和创意项目的便捷窗口。\n\n#### 陆永剑 - [Github](https://github.com/deer-code)\n* :white_check_mark: [桌面新宠(NewPet) ](https://apps.apple.com/cn/app/%E6%A1%8C%E9%9D%A2%E6%96%B0%E5%AE%A0/id6499423794?mt=12) : 与效率工具深度互动的桌面宠物\n\n### 2024 年 9 月 9 号添加\n#### biboom(广州) - [Github](https://github.com/li150/li150)\n* :white_check_mark: [天命打工人插件](https://chromewebstore.google.com/detail/%E5%A4%A9%E5%91%BD%E6%89%93%E5%B7%A5%E4%BA%BA/annhlammehogodlbcnncafpgnefbmpah)：倒计时的时间摸鱼浏览器插件\n\n### 2024 年 9 月 6 号添加\n#### Cloudchewie(武汉) - [Github](https://github.com/Robert-Stackflow), [博客](https://blog.cloudchewie.com)\n* :white_check_mark: [CloudOTP](https://apps.cloudchewie.com/zh_CN/cloudotp)：双因素验证器（支持 Android 和 Windows 平台，支持从第三方软件导入和云备份） - [更多介绍](https://apps.cloudchewie.com/zh_CN/cloudotp/introduction)\n* :white_check_mark: [Moment](https://moment.cloudchewie.com/)：相册博客（支持自托管） - [更多介绍](https://github.com/Robert-Stackflow/Moment)\n\n#### xiaoxusdz - [Github](https://github.com/xiaoxusdz)\n* :white_check_mark: [Flux AI](https://fluxaiweb.com)：AI 图片生成器\n* :white_check_mark: [AI Lyrics Generator](https://www.lyricsgenerator.io)：免费人工智能歌词生成器和人工智能歌曲作家\n\n### 2024 年 9 月 3 号添加\n#### keycheung - [Github](https://github.com/keycheung)\n* :white_check_mark: [海德时钟](https://apps.apple.com/cn/app/hyde-clock-time-widget/id6476807443)：集精美时钟、番茄计时以及白噪音的专注类 App（苹果应用）\n\n\n### 2024 年 9 月 2 号添加\n#### 94r7(桂林) - [Github](https://github.com/WtecHtec), [博客](https://r7.nuxt.dev/)\n* :white_check_mark: [放大镜录屏](https://chromewebstore.google.com/detail/oamckfgecgfenpchklfhelhnngmhdnma?authuser=0&hl=zh-CN)：Chrome 录屏插件，可放大区域 - [更多介绍](https://www.bilibili.com/video/BV1g9noedECb/?spm_id_from=333.999.0.0&vd_source=d5b28d31bf0713b1e64a887d37daeb4a)\n\n### 2024 年 8 月 31 号添加\n#### fatalor(深圳) - [Github](https://github.com/fatalor)\n* :white_check_mark: [IT 摇篮曲](https://www.itylq.com)：聚焦于计算机网络、计算机操作系统（Linux/Win）、项目部署实战、开源项目及软件、IT科普类等知识内容\n\n#### 名翠软件(云南德宏)\n* :white_check_mark: [美丽记账](https://www.mingcui.cn/meili/)：记账 App（简单好用免费）\n\n#### virgoone(上海) - [Github](https://github.com/virgoone), [网站主页](https://blog.douni.one)\n* :white_check_mark: [Flux AI Image Generator](https://fluxaipro.art)：文生图网站，基于 fluxai 包含 prompt 翻译优化功能（开源）\n\n### 2024 年 8 月 30 号添加\n* :white_check_mark: [找到每个任务的最佳 AI 工具](https://toollist.ai)：找到最好的 AI 工具\n\n#### jiangnanboy - [Github](https://github.com/jiangnanboy), [博客](https://jiangnanboy.github.io/)\n* :white_check_mark: [番石榴实验室 AI 智能应用](https://ai.maogoujiaoliuqi.com/)：图片文字提取，OCR 文字提取，表格结构识别，文档比对\n\n### 2024 年 8 月 29 号添加\n#### 诸葛子房\n* :white_check_mark: [酒店协议代码——Hotel Corporate Codes](https://corporate-codes.online)：酒店协议代码是关于 IHG、希尔顿、万豪、凯悦等酒店品牌的特别折扣代码。这些代码提供给企业，以便以优惠价格预订酒店。公司可以利用这些代码为员工的出差节省旅行费用。免费且支持多语言。\n\n#### 风巢森淼(北京) - [Github]( https://github.com/wincatcher), [博客](https://okjk.co/q4mQVu)\n* :white_check_mark: [网站地图 sitemap 生成及数据可视化分析平台](https://sitemap.top)：不仅可以按需生成网站地图（sitemap），还允许用户获取网站地图的统计数据，并以图形化的方式查看和分析网站的结构 - [更多介绍]( https://juejin.cn/post/7407999205493178418)\n\n#### YiXinCoding(武汉)\n* :white_check_mark: [Kite 待办](https://kite.kitlib.cn/)：桌面待办清单应用（简洁轻量）\n\n### 2024 年 8 月 27 号添加\n#### 0xJoanne - [Github](https://github.com/0xjoanne)\n* :white_check_mark: [Emoji Spark](https://emojispark.com)：AI Emoji 搜索工具\n\n### 2024 年 8 月 25 号添加\n* :white_check_mark: [AI Anime Generator](https://aianimegen.org)：免费的 AI 动漫图片生成器\n\n### 2024 年 8 月 22 号添加\n#### 木木木\n* :white_check_mark: [Text Compare & Merge](https://diffsuite.com)：文本对比与合并工具\n* :white_check_mark: [SVG to ICO](https://svg2ico.com/zh/)：SVG、PNG 转 ICO 工具\n\n#### shaoyangliu(广州) - [Github](https://github.com/fengmao)\n* :white_check_mark: [流沙 SEO](https://liusha.com)：分享谷歌 SEO 相关知识\n\n#### tutorial0 - [Github](https://github.com/tutorial0)\n* :x: [撩妹神器](https://dirtypickuplines.org/)：AI 约会辅助工具，帮助你生成一些搭讪用语。其他都无所谓，只希望各位用完了挨打的时候不要把我说出来就行\n\n#### 风巢森淼(北京) - [Github]( https://github.com/wincatcher), [博客]( https://okjk.co/q4mQVu)\n* :white_check_mark: [奇异字体生成器](https://freakyfontgenerator.top)：帮助用户创建和转换各种独特的字体样式 (通过 unicode 编码转换) - [更多介绍](https://juejin.cn/post/7404777095623622666)\n\n### 2024 年 8 月 21 号添加\n#### 91化简 - [Github](https://github.com/Hacker233/resume-design)\n* :x: [91化简](https://91huajian.cn/)：简历设计生成器（开源），内置两款设计器，多种免费模板，支持导出 PDF、JSON\n\n### 2024 年 8 月 19 号添加\n#### seeeeal - [Github](https://github.com/seeeeal)\n* :x: [下一本读什么](https://xiayibendushenme.com/)：汇总优质书单，解决书荒；按照书单主题与名人推荐进行分类，绝大多数图书在豆瓣都属于8.0以上 - [更多介绍](https://xiayibendushenme.com/about)\n\n#### Airyland - [Github](https://github.com/airyland)\n* :white_check_mark: [Awesome Flux AI](https://www.awesomefluxai.com)：Flux AI LoRA 和资料导航\n\n### 2024 年 8 月 16 号添加\n#### mabengda（北京）\n* :white_check_mark: [Watch together](https://chromewebstore.google.com/detail/watch-together/lghnmgibkhmfeiiekigddnimaaabdmhk)：帮助身处异地的多个用户观看一个视频时同步进度的谷歌插件。打开相同视频网站->连接线通房间->拖动进度条或者暂停播放。\n\n### 2024 年 8 月 15 号添加\n#### Ethan Sunray（纽约）\n* :white_check_mark: [Perchance AI](https://perchanceai.cc)：无需注册即可在线使用 18 个 AI 图片生成器和体验 75 个文生图绘画风格，还支持在线使用 Flux AI、SDXL、SDXL Lightning 和 SDXL Flash 模型\n\n#### 诸葛子房 \n* :x: [TikTok 收益计算器](https://tiktok-money-calculator.online/zh)：帮助用户估算在 TikTok 上发布视频可能获得的收入。输入关键数据，如粉丝数量、平均观看量等，快速计算出预期收益额。\n\n#### 微芒不朽(长沙) - [Gitee](https://gitee.com/zhanhongzhu/zhanhongzhu)\n* :white_check_mark: [微芒计划](https://kestrel-task.cn)：待办效率管理工具（Windows 平台）（使用 Tauri 构建）\n\n### 2024 年 8 月 14 号添加\n#### zane12580 - [即刻](https://jike.city/zane12580)\n* :x: [LLM GPU Helper](https://llmgpuhelper.com)：大模型资源平台：提供 GPU 内存计算、个性化模型推荐和全面知识库，助您精准选择和高效应用AI模型。\n  \n### 2024 年 8 月 13 号添加\n#### biboom(广州) - [Github](https://github.com/li150/mapping_scanning)\n* :white_check_mark: [配图扫描 App](https://github.com/li150/mapping_scanning)：基于本地 OCR 配图扫描的文字识别 App\n\n #### Avery (广州) \n* :white_check_mark: [AI Tool Trek](https://aitooltrek.com/)：AI 工具导航站 & 实时 AI 新闻预览\n\n #### Airyland - [Github](https://github.com/airyland)\n* :white_check_mark: [Logo.surf](https://www.logo.surf)：文字生成 Logo & Favicon\n\n### 2024 年 8 月 12 号添加\n#### blank - [Twitter](https://x.com/blankwebdev)\n* :white_check_mark: [AITDK SEO Extension](https://aitdk.com/extension)：免费的 All-in-One SEO 浏览器插件，支持一键查看网站的流量、Whois、关键词密度等 SEO 信息\n* :white_check_mark: [Comment Fast](https://commentfast.com/)：基于 AI 的快速评论工具，为任意帖子或文章生成高质量评论\n\n### 2024 年 8 月 10 号添加\n#### 木木木\n* :white_check_mark: [MP4 to MP3](https://mp4t.com/zh/)：免费、安全、快速的 MP4 转 MP3 工具\n\n### 2024 年 8 月 8 号添加\n#### zxcHolmes\n* :x: [SpeakGo 实时同声传译工具](https://speakgo.app)：高效便捷的实时同声传译工具\n\n #### Airyland - [Github](https://github.com/airyland)\n* :white_check_mark: [IP.network](https://www.ip.network)：IP 地址查询\n* :white_check_mark: [DNS.fish](https://dns.fish): 域名 DNS 记录查询\n\n### 2024 年 8 月 6 号添加\n#### tutorial0 - [GitHub](https://github.com/tutorial0)\n* :white_check_mark: [One-Click SEO Links](https://chromewebstore.google.com/detail/jllecdngjonjinaffdjdcojfdikimdlj?authuser=0&hl=zh-TW) (Chrome 插件）帮助站长进行 SEO 外链推广。包含全自动模式、半自动模式和人工模式，在外链推广的复杂填表场景能节省大量时间。\n\n### 2024 年 8 月 5 号添加\n#### underwood\n* :white_check_mark: [Midjourney Sref code 精选库](https://midjourneysref.com/)：在 Midjourney 的 prompt 输入 `--sref xxx` ，可以固定生成某种特定风格的图片。这对很多人来说非常方便，不用写一堆效果词，只要记住几位数字就可以。但 `--sref xxx` 有大概 40 亿个，其中重复或者质量不佳的不在少数。因此做了一个网站把一些个人觉得不错的 sref code 收集起来并进行分类，方便新人或设计师检索\n\n#### 0xJoanne - [Github](https://github.com/0xjoanne)\n* :white_check_mark: [CosmeticCheck](https://www.cosmeticcheck.app)：化妆品批号免费查询网站\n\n### 2024 年 8 月 3 号添加\n#### 7SaiWen(成都)\n* :white_check_mark: [GPS测速仪 - 速度表](https://apps.apple.com/cn/app/id1497060416)：GPS测速仪 - 跟踪您的速度和行程！Tesla Model 3 车主最爱速度表！\n\n#### Airyland - [Github](https://github.com/airyland)\n* :white_check_mark: [Query.Domains](https://query.domains)：极速域名注册状态及 whois 批量查询\n* :white_check_mark: [Favicon.im](https://favicon.im): 获取网站 Favicon\n\n### 2024 年 8 月 2 号添加\n#### 瓶水之冰(澳洲布里斯班) - [Github](https://github.com/zzAlexzz), [网站](https://geilio.com/), [小红书](http://xhslink.com/tXLmAR)\n* :white_check_mark: [Geilio Timer](https://geilio.com/)：高度可定制的计时器，适用于考试单题计时提醒等，[App Store](https://apps.apple.com/lt/app/geilio-timer/id6446805524)，[Google Play](https://play.google.com/store/apps/details?id=com.geilio.android.timer)\n\n### 2024 年 8 月 1 号添加\n#### Oiov(成都) - [Github](https://github.com/oiov)\n* :white_check_mark: [WR.DO](https://wr.do)：基于 Cloudflare 的多租户 DNS 分发系统 - [仓库](https://github.com/oiov/wr.do)\n\n#### Xigong(郑州) - [Github](https://github.com/Xigong93)\n* :clock8: [小篆传包](https://github.com/Xigong93/XiaoZhuan)：一键更新安卓 Apk 到华为、小米等多个应用市场，助力 App 发版\n\n#### 木木木\n* :x: [SVG to PNG](https://svgzz.com/)：SVG 转 PNG、JPG、WebP 格式，支持多文件，支持设置宽度或高度\n\n### 2024 年 7 月 30 号添加\n#### 疯狂的小波\n* :white_check_mark: [Mejorar Imagen](https://mejorarimagen.org/)：AI 图像增强器：用 AI 将图片放大 10 倍，最高提升到 12K 分辨率\n\n### 2024 年 7 月 29 号添加\n#### Owen Chen\n* :x: [PackPack](https://packpack.ai): AI 驱动的书签管理工具，专为新闻和社交媒体等网络资源定制保存功能。它利用AI清理并保存内容。使用PackPack，彻底改变你的书签管理方式，更智能地管理你的收藏。\n\n### 2024 年 7 月 26 号添加\n#### Sean(成都)\n* :white_check_mark: [Animate Old Photos](https://animateoldphotos.org/)：利用 AI 让那些定格在老照片中的回忆再次“动起来”，让记忆变得更加生动，回到了过去的美好时光。\n\n#### 7SaiWen(成都)\n* :white_check_mark: [MyTracks](https://apps.apple.com/cn/app/id1464666446)：MyTracks 我的足迹: GPS 记录仪，支持户外地图导航和轨迹记录、徒步登山滑雪路径回溯\n\n### 2024 年 7 月 24 号添加\n#### 7SaiWen(成都)\n* :white_check_mark: [Network Sniffer](https://apps.apple.com/cn/app/id6450956188)：Network Sniffer 网络抓包工具 HTTP(S)/Socket 抓包,重放重写,网络调试,脚本\n\n#### Joans(上海) - [Github](https://github.com/joansnotion)\n* :white_check_mark: [Notion Mate](https://www.notionmate.top/)：为 Notion 提供 30 多种自定义功能，如大纲（TOC）、小文本、全宽、图像查看器、滚动到顶部、主题等 - [Chrome](https://chromewebstore.google.com/detail/notion-mate/pplckfedebdimphneohkmhlmhompgpmn)，[Edge](https://microsoftedge.microsoft.com/addons/detail/notion-mate/dfpnkdcllpohpikeedpejodbloiimdib)\n\n### 2024 年 7 月 23 号添加\n#### 小草林(太原) - [Github](https://github.com/xuegao-tzx)\n* :white_check_mark: [诶嘿(EI)](https://ei.xcl.ink/)：加密智慧聊天 APP,包含 AI 对话功能、在线、离线语音转文本，跨平台社交 APP - [Android](https://ei.xcl.ink/get-android.html)，[iOS](https://ei.xcl.ink/get-ios.html)\n\n### 2024 年 7 月 20 号添加\n#### onesthink - [博客](https://blog.csdn.net/php_php_hxw)\n* :x: [电商优惠券查找脚本](https://greasyfork.org/zh-CN/scripts/489212)：淘宝、天猫、聚划算、京东商品优惠券查询领取\n\n#### sjdeak - [Github](https://github.com/sjdeak)\n* :white_check_mark: [Airtable iOS Shortcuts Library](https://shortcuts.sequentialroutine.com)：为 iOS 设备 Airtable 用户设计的快捷指令库，旨在通过一系列快捷指令来简化 Airtable 的使用流程。减少用户手动操作 Airtable 应用，用户可通过设置快捷指令直接创建新记录或执行其他重复性任务\n\n### 2024 年 7 月 18 号添加\n#### fengfeng - [GitHub](https://github.com/iOSFDTeam), [App 官网](https://resonanceai.top)\n* :x: [共鸣 Chat](https://apps.apple.com/cn/app/id6476399027)：基于 ChatGPT 的 iOS App，你可以用语音或文字跟 GPT 聊天，支持 GPT-3.5，GPT-4，GPT-4o 模型。Token 保持跟官方API 1:1 比例消耗。下载送 2000 Token，每日签到 500 Token，也可以做任务获取 Token，就算不购买 Token 也可以一直白嫖。支持多语音模型，有 GPT 模型和 miniMAX 模型\n\n#### ilgnefz - [GitHub](https://github.com/ilgnefz)\n* :white_check_mark: [OncePower](https://github.com/ilgnefz/once_power)：文件和文件夹批量重命名工具，额外添加了批量删除空文件夹和批量移动文件的功能，用户无需学正则表达式既可进行高级匹配。\n\n### 2024 年 7 月 17 号添加\n#### chlinlearn（江西）\n* :x: [值得一读技术博客](https://daily-blog.chlinlearn.top): 每日分享高质量技术博客，为您精选值得一读的技术博客、技术文档、产品创意。\n\n### 2024 年 7 月 15 号添加\n#### xiaoxusdz - [Github](https://github.com/xiaoxusdz)\n* :white_check_mark: [X Detector](https://xdetector.ai/)：检测文字是否由 AI 编写，AI ​​内容检测器\n* :white_check_mark: [RIZZ AI](https://rizzai.ai/)：AI 约会助手\n\n### 2024 年 7 月 14 号添加\n#### Shawn(扬州) - [Github](https://github.com/imsgao)，[小红书](https://www.xiaohongshu.com/user/profile/5f3b48670000000001008b24?xhsshare=CopyLink&appuid=5f3b48670000000001008b24&apptime=1720886673&share_id=5af7cb111ea84fad822fd4d4576523dd)\n* :white_check_mark: [壁纸千寻](https://apps.apple.com/app/id6504430291)：免费下载手机壁纸，每日自动更新\n\n### 2024 年 7 月 13 号添加\n#### 约翰 - [Github](https://github.com/johanazhu)，[博客](https://blog.azhubaby.com/)\n* :white_check_mark: [小报童专栏导航](https://xiaobaot.cn/)：为你筛选值得订阅的小报童优质专栏\n\n### 2024 年 7 月 11 号添加\n#### xiaosong gao - [GitHub](https://github.com/xiaoosnggao)\n* :x: [韶光日记](https://gxspp.site/)：记录故事的时间轴日记 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/389)\n\n### 2024 年 7 月 10 号添加\n#### ayangweb - [GitHub](https://github.com/ayangweb)\n* :white_check_mark: [EcoPaste](https://github.com/ayangweb/EcoPaste)：多平台剪切板管理工具（开源）- [更多介绍](https://github.com/ayangweb/EcoPaste?tab=readme-ov-file#%E5%8A%9F%E8%83%BD%E4%BB%8B%E7%BB%8D)\n\n### 2024年7月9号添加\n#### Q-Sansan\n* :white_check_mark: [FurryAI](https://www.furryaiart.com)：生成毛茸茸艺术品的 AI 创作平台，根据文本描述生成毛茸茸的艺术品。\n\n### 2024年7月8号添加\n#### 风决子（北京） - [GitHub](https://github.com/KEYIERYI/FengJueZi-DevProcess)\n* :x: [Work Panel](https://chromewebstore.google.com/detail/work-panel/blomlkfbgepjlmmggfkegbgielelocef?hl=zh-CN&utm_source=ext_sidebar)：可视化时间流逝工作面板，致力于每日高效工作四小时，工作生活平衡，拒绝996文化 - [更多介绍](https://fengjuezi.lihu666.com/)\n\n### 2024年7月6号添加\n#### Funny\n* :white_check_mark: [即时热点](http://nowhots.com)： 热门信息聚合站，帮助您轻松了解正在发生的事\n\n#### AwesomeYang（深圳）\n* :white_check_mark: [AI WITH.ME](https://aiwith.me): AI 导航站，现在是免费提交，自动化截图，站点信息 AI 汇总生成，Google 登录，仅收录 AI 产品\n\n### 2024年7月3号添加\n#### Ethan Sunray（纽约）\n* :white_check_mark: [AI Filter](https://aifilter.net)：用 AI 滤镜将你的照片变换为动漫、粘土、3D、像素、表情符号、视频游戏、贴纸等多种滤镜风格\n\n### 2024年7月2号添加\n#### wtechtec(北京)\n* :white_check_mark: [Replay Text Actions](https://chromewebstore.google.com/detail/replay-text-actions/ohkipcncfnmjoeneihmglaadloddopkg?authuser=0&hl=zh-CN)：能缓存输入文案、操作流程自动化的 Chrome 插件 - [更多介绍](https://www.bilibili.com/video/BV1ZE3aegE2g/?spm_id_from=333.999.0.0&vd_source=d5b28d31bf0713b1e64a887d37daeb4a)\n\n#### xvoy(广州)\n* :white_check_mark: [Midjourney 样式代码库](https://srefhunter.top/)：SrefHunter 汇集各种社交媒体平台的 Midjourney 样式代码\n\n### 2024年6月30号添加\n#### Honwhy Wang - [Github](https://github.com/honwhy/md)\n* :white_check_mark: [mpmd](https://mpmd.pages.dev)：利用 Markdown 编辑微信公众号文章的浏览器插件，轻松创作引人入胜的微信公众号图文内容。该插件集成了功能强大的 Markdown 编辑器和主流图片托管平台，并支持使用官方微信公众号图片托管服务，让您免费存储图片，助您高效创作图文内容\n\n#### wtechtec(北京) - [Github](https://github.com/WtecHtec), [博客](https://blog.csdn.net/weixin_42429220?type=blog) \n* 🕗: [CraftRecord](https://github.com/WtecHtec/electron-react-record)：鼠标跟随录制软件 - [更多介绍](https://www.bilibili.com/video/BV13ugsegEnk/?spm_id_from=333.999.0.0&vd_source=d5b28d31bf0713b1e64a887d37daeb4a)\n\n### 2024年6月28号添加\n#### biboom(广州)\n* :white_check_mark: [三点划线](https://chromewebstore.google.com/detail/%E4%B8%89%E7%82%B9%E5%88%92%E7%BA%BF/enindkdbeijhhoeedocjehpflljhhoho)：(Chrome 插件) 边阅读边划线、记录想法，不间断地捕捉灵感\n\n### 2024年6月27号添加\n#### Andres Rivas - [Github](https://github.com/AndresRivas0)\n* :white_check_mark: [微软 TTS (Text-to-Speech) 文字转语音下载器](https://www.microsoft-tts-downloader.com)：一键播放或下载 微软 TTS 文字转语音 合成的音频。支持所有官方提供的语音和声音选项。支持SSML语法。每月享免费用量。量大者可升级Pro Plan，固定便宜费用无限使用。摒弃按量收费。支持支付宝\n\n### 2024年6月26号添加\n#### 路人甲 - [Github](https://github.com/mumuy)\n* :white_check_mark: [亲戚称呼计算器](https://passer-by.com/relationship/) “中国亲戚关系计算器”为你避免了叫错、不会叫亲戚的尴尬，收录了中国亲戚关系称呼大全，只需简单的输入即可完成称呼计算。称呼计算器同时兼容了不同地域的方言叫法，你可以称呼父亲为：“老爸”、“爹地”、“老爷子”等等。让您准确的叫出亲戚称谓，理清亲属之间的亲戚关系，轻松掌握中国式的亲戚关系换算，让你更了解中国文化 - [更多介绍](https://github.com/mumuy/relationship)\n\n#### Chaosflutter - [Github](https://github.com/chaosflutter), [博客](https://zhengchao.dev)\n* :white_check_mark: [Siphon 吸词](https://siphon.ink/)，安装 Siphon 浏览器插件后，在线英文阅读中如果遇到生词，只要双击单词即可翻译并自动加入到生词本中，记录生词的同时会记录上下文句子。然后可以在 siphon 网站通过多种方式复习生词。 能够帮用户养成微习惯：双击查单词->自动收藏单词->卡片复习记忆 - [更多介绍](https://siphon.ink/docs/)\n\n### 2024年6月24号添加\n#### Johnny Yang - [Github](https://github.com/yangbishang)\n* :white_check_mark: [AITOOLIST](https://aitoolist.com/)：AI 信息聚合平台，在一个网站获取所有 AI 信息 -  [更多介绍](https://x.com/yangbishang)\n\n### 2024年6月23号添加\n* :white_check_mark: [m3u8下载器](https://github.com/youwen21/flybird-m3u8downloader)：下载 m3u8 视频、直播、批量检测 IPTV m3u8 有效性，release有安装包。 支持 Windows, macOS 系统。\n\n### 2024年6月22号添加\n#### wtechtec(北京) - [Github](https://github.com/WtecHtec), [博客](https://blog.csdn.net/weixin_42429220?spm=1000.2115.3001.5343)\n* :white_check_mark: [saysnap](https://chromewebstore.google.com/detail/saysnap/nodnlkmbcbkndbpgaopecgjpffhijkda?authuser=0&hl=zh-CN)：Chrome 插件，帮助用户在网上冲浪时轻松发现并保存有趣的观点和句子到卡片中。\n* :white_check_mark: [Group Tab Tree](https://marketplace.visualstudio.com/items?itemName=Herzshen.mgtab)：VSCode插件，帮助用户轻松找到自己打开的Tab标签。\n\n### 2024年6月21号添加\n#### Q-Sansan\n* :white_check_mark: [PixarAI](https://www.pixarai.com/)：为您最喜欢的角色或宠物 生成令人惊叹的迪士尼皮克斯风格的海报。\n\n### 2024年6月20号添加\n#### hsslive - [Github](https://github.com/galaxy-s10), [博客](https://www.hsslive.cn)\n* :white_check_mark: [billd-live](https://live.hsslive.cn)：仿 B 站的个人直播间\n* :white_check_mark: [billd-desk](https://desk.hsslive.cn)：仿 todesk 的远程桌面\n\n#### August - [Github](https://github.com/august-xu)\n* :x: [Case Convert Online](https://convertcase.indiehacker.online/)：英文大小写转换工具\n\n#### someu\n* :white_check_mark: [AigoTools](https://www.aigotools.com)：导航站，用 AI 自动收录网站信息 - [更多介绍](https://github.com/someu/aigotools/)\n\n#### qiaolin(长沙) - [Github](https://github.com/qiaolin-li)\n* :white_check_mark: [Dubbo-Desktop-Manager](https://github.com/qiaolin-li/dubbo-desktop-manager)：Dubbo 的桌面管理软件\n\n### 2024年6月19号添加\n#### 诸葛子房\n* :white_check_mark: [小红书去水印图片视频下载](https://www.xhs-download.online/)：小红书去水印图片视频下载工具网站\n\n#### 没想好(北京) - [Github](https://github.com/shixixiyue/MermaidHelp), [博客](https://blog.shizhuoran.top/)\n* :white_check_mark: [MermaidHelp](https://mermaid.shizhuoran.top/)：Mermaid + AI绘制流程图，免翻墙，免费，目前用的 KIMI\n\n### 2024年6月18号添加\n#### Civilpy(西安) - [Github](https://github.com/yeayee), [博客](https://intumu.com/)\n* :x: [Trace](https://github.com/yeayee/Trace)：封装 QQ + 微信聊天记录分析的 Windows 桌面应用，封装 QQ + 微信聊天记录分析、B站、小红书竞调数据分析、Selenium+谷歌浏览器（准指纹浏览器，不限登录账号数量）\n\n* :white_check_mark: [aifly.tools](https://aifly.tools/)：最好的 AI 工具站 - 收集最全最新的 AI 工具站\n\n### 2024年6月17号添加\n#### 秦少卫(邯郸) - [Github](https://github.com/nihaojob), [博客](https://juejin.cn/user/3843548383549214/posts)\n* :white_check_mark: [快图批量图片设计工具](https://www.kuaitu.cc/)：可通过表格 + 设计模板来批量生成图片 - [更多介绍](https://www.bilibili.com/video/BV12m421375X/#reply1605907760)\n\n### 2024年6月14号添加\n\n#### Godow - [GitHub](https://github.com/Godow)\n* :x: [html2image](https://html2image.online/)：通过提供的在线代码编辑器，轻松将 HTML 和 CSS 代码转换为及时预览图像，并可以下载存储为 SVG、PNG 和 JPEG 格式的图像文件\n\n#### jpgHi / IDjpg（广州）\n* :white_check_mark: [jpgHi 图片魔法放大](https://jpghi.com)：无损放大加增强图片，恢复图像极致细节和纹理\n* :white_check_mark: [IDjpg 图片风格化](https://idjpg.com)：将人像图片转换成任意风格，同时保持人物一致性\n\n### 2024年6月7号添加\n#### wtechec(北京) - [Github](https://github.com/WtecHtec), [博客](https://blog.csdn.net/weixin_42429220?spm=1010.2135.3001.5343)\n* :white_check_mark: [HelthPal](https://chromewebstore.google.com/detail/helthpal/jnkkhbadiacplpihlilbgnjikcecjeno?hl=zh-CN&authuser=0)：自定义健康提醒以及多色便签条提醒功能的 Chrome 插件\n\n#### G (广东) - [Github](https://github.com/Subdue0)\n* :white_check_mark: [全王探测-直播源搜索神器](https://qwtc.cc/)：网站的核心是针对特定的区域范围进行 IP 探测，用于挖掘互联网中各种各样的价值 IP，相当于增强版 [fofa](https://fofa.info/)。内置多种黑科技功能：直播源搜索，直播源解析，直播源探测，直播源追踪，也支持非直播源的其他类型的IP查找，比如，漏洞捕获、优选IP、CDN溯源等等 - [更多介绍](https://qwtc.cc/frontend/about)\n\n### 2024年6月6号添加\n#### 猫九壁纸（广州） - [Github](https://github.com/xiaocp)\n* :white_check_mark: [猫九壁纸精选](http://xiaocp.oss-cn-shenzhen.aliyuncs.com/images/applet/wx_cat9.jpeg)：精选高清手机壁纸、美女壁纸、情侣壁纸、锁屏壁纸、头像、表情包、风景壁纸、情侣头像。(微信小程序)\n\n### 2024年6月3号添加\n#### 禄眠(杭州)\n* :x: [原色](https://r0jo31c9rsb.feishu.cn/docx/YcSzdcXkGoymXbxsJIAcWB7ZnwU)：简洁的颜色查询工具，基于中国传统色\n\n#### yzqzy - [Github](https://github.com/yzqzy)\n* :white_check_mark: [微信助手](https://github.com/yzqzy/wechat-assistant)：支持群发消息、定时任务、消息防撤回、聊天记录备份等功能 - [更多介绍](https://yzqzy.github.io/wechat-assistant/features.html)\n\n\n### 2024年5月28号添加\n#### Kestrel - [Github](https://github.com/kestrela)\n* :white_check_mark: [微芒计划](https://kestrel-task.cn)：简洁方便的效率待办管理工具\n\n#### fantingsheng - [Github](https://github.com/fantingsheng)\n* :white_check_mark: [封面图](https://spacexcode.com/coverview)：封面图在线制作工具\n\n### 2024年5月24号添加\n#### 刚师傅 - [Github](https://github.com/margox)\n* :x: [好说](https://haoshuo.cc/)：二次元数字人 AI 口语陪练，支持英语、日语、韩语、法语(APP)\n\n### 2024年5月23号添加\n#### 倒霉狐狸 - [Github](https://github.com/evildao)\n* :white_check_mark: [便签喵](https://www.zhimiaox.cn/images/bqm.jpg)：联动桌面设备的便签待办小工具(微信小程序)\n\n### 2024年5月22号添加\n#### Yefei(苏州)\n* :white_check_mark: [倒数鸭](https://apps.apple.com/cn/app/%E5%80%92%E6%95%B0%E9%B8%AD/id6457201223)：倒数正数纪念日 StandBy 待机显示小组件\n\n#### 诸葛喵 (宁波)\n* :white_check_mark: [千盒工具](https://1000tool.com/)：简洁好用，优质在线工具大全，包含图片/音视频/文本/办公/开发等类目。\n\n### 2024年5月21号添加\n#### 诸葛子房\n* :white_check_mark: [小宇宙播客下载谷歌浏览器插件](https://chromewebstore.google.com/detail/%E5%B0%8F%E5%AE%87%E5%AE%99%E6%92%AD%E5%AE%A2%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7%E2%80%94%E2%80%94%E5%85%8D%E8%B4%B9%E6%92%AD%E5%AE%A2%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7/fmhjloodnnppohffjjpjghekafcjdgml?hl=zh-CN&authuser=0)：小宇宙播客下载 - [使用教程](https://www.bilibili.com/video/BV1BM4m1k7Ph/)\n* :white_check_mark: [小红书视频封面下载谷歌浏览器插件](https://chromewebstore.google.com/detail/%E5%B0%8F%E7%BA%A2%E4%B9%A6%E8%A7%86%E9%A2%91%E5%9B%BE%E7%89%87%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7%E2%80%94%E2%80%94%E5%85%8D%E8%B4%B9%E8%A7%86%E9%A2%91%E5%9B%BE%E7%89%87%E4%B8%8B%E8%BD%BD%E5%B7%A5%E5%85%B7/lfkdbogbagdclonopjbdbclpagbkdfal?hl=zh-CN&authuser=0)：小红书视频封面下载 - [使用教程](https://www.bilibili.com/video/BV1Gz421e7rA/?spm_id_from=333.999.0.0)\n\n#### Larry Zhu - [Github](https://github.com/LarryZhu-dev)\n* :white_check_mark: [AutoFit 浏览器插件](https://chromewebstore.google.com/detail/autofit/ablniobpojpaihhohacpjhgcbnkhmfeo?hl=zh-CN&utm_source=ext_sidebar)：使网页根据浏览器窗口缩放\n\n### 2024年5月20号添加\n#### sagasu - [Github](https://github.com/s87343472)\n* :white_check_mark: [AIMangaTranslator](https://aimangatranslator.com/)：用 AI 翻译漫画 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-2120097059)\n\n### 2024年5月17号添加\n#### Dataflare - [X/Twitter](https://x.com/DataflareApp)\n* :white_check_mark: [Dataflare](https://dataflare.app)：简单、易于使用的数据库管理工具，支持 `PostgreSQL` `MySQL` `SQLite` `SQL Server` `libSQL` `Cloudflare D1` 等数十种数据库。\n\n#### 诸葛子房\n* :white_check_mark: [bilibili 视频下载谷歌浏览器插件](https://chromewebstore.google.com/detail/bilibili%E8%A7%86%E9%A2%91%E4%B8%8B%E8%BD%BD%E2%80%94%E2%80%94%E6%9C%80%E6%96%B0%E5%85%8D%E8%B4%B9%E4%B8%8B%E8%BD%BD%E6%96%B9%E6%B3%95%E5%92%8C%E5%B7%A5%E5%85%B7/bjoodghhkboffngfjancdaplbjjibjnp?hl=zh-CN&authuser=0)：bilibili 视频和封面下载 - [更多介绍](https://www.bilibili.com/video/BV1Xm421T7ns/?spm_id_from=333.999.0.0)\n\n#### luhaifeng666 - [Github](https://github.com/luhaifeng666)\n* :white_check_mark: [Bunpou](https://luhaifeng666.github.io/bunpou/): 日语语法整理，收录 N5-N1 阶段的语法，目前在持续更新。\n* :white_check_mark: [Kana playground](https://luhaifeng666.github.io/kana-playground/): 用于练习假名的网站，适合日语学习新手。\n\n### 2024年5月15号添加\n#### wells2333(广州) - [Github](https://github.com/wells2333/sg-exam)\n* :x: [sg-exam](https://yunmianshi.com.cn/#/home)：教学管理平台（便捷、高效)，涵盖在线考试、日常练习、互动学习等核心功能。\n\n#### Aissen\n* :x: [Miko AI 翻译](https://chatmiko.com)：AI翻译工具，每次支持 10 万字，30 种语言，次数不限且完全免费\n\n### 2024年5月14号添加\n#### nini22P - [GitHub](https://github.com/nini22P)\n* :white_check_mark: [OMP](https://nini22p.github.io/omp/)：网页端 OneDrive 媒体播放器\n\n### 2024年5月13号添加\n#### gofxas - [Github](https://github.com/gofxas)\n* :white_check_mark: [厨房定时器](https://timing.cpdd.cool/)：针对移动端，滑动操作。\n\n#### fengmao(广州) - [Github](https://github.com/fengmao)\n* :x: [APK DOWNLOAD](https://apk.bot/)：安卓 apk 下载站 (免费)，无广告绿色版，完美替代 Google Play Store - [更多介绍](https://apk.bot/faq/)\n\n#### hacker233(成都) - [Github](https://github.com/Hacker233/resume-design), [博客](https://juejin.cn/post/7121691642469285918#comment)\n* :x: [91化简-开源简历设计制作神器](https://91huajian.cn/)：内置两款设计器、快速设计、简历、封面、海报均可免费制作，支持一键导出高清 PDF、JSON 数据等 - [更多介绍](https://github.com/Hacker233/resume-design)\n\n#### kisslove\n* :white_check_mark: [中国独立开发者项目列表（网页版)](https://developer.hubing.online/home)：基于本项目数据制作的网页版（备注：网站开发者为第三方，因为喜爱本项目提供的信息所以开发了网页版，此网站和本仓库的拥有者无关，双方没有合作关系，本列表将永久以 Github 仓库形式存在，以后不会转成商业化运作（意思是不会盈利）） - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/353)\n\n#### azhubaby（上海） - [Github](https://github.com/johanazhu), [博客](https://blog.azhubaby.com/)\n* :x: [中国色](https://chinese-colors.com)：中国传统色，后续会添加故宫色等功能\n\n### 2024年5月11号添加\n#### bairdhh(武汉) - [Github](https://github.com/huhan-123)\n* :white_check_mark: [Rap Generator](https://rapgenerator.net/)：生成说唱歌词和歌曲的免费 AI 工具，用户可以输入提示词，选择情绪，生成符合描述的个性化的歌词，并可以根据歌词选择免费创建两首定制的说唱歌曲。可以免费下载和收听人工智能生成的说唱歌曲。希望让每一个 Rap 音乐爱好者能轻松地创作自己喜欢的音乐\n\n### 2024年5月9号添加\n#### Q-Sansan\n* :white_check_mark: [Brick Center](https://www.brickcenter.net/)：如果您是一位乐高爱好者，热衷与创造各种乐高形象，BrickCenter 可以将您的创意，自动生成乐高设计图。AI 乐高生成器可以将你的文字转换成定制的乐高套装。轻松地从照片创建你自己的小人偶，如果您觉得乐高头像很酷，也可以将您的自拍图片，生成乐高头像。还可以来网站浏览由爱好者精心制作的独一无二的乐高作品 - [更多介绍](https://www.bilibili.com/video/BV1VS411c7oG)\n\n### 2024年5月6号添加\n#### fengfeng(成都) - [Github](https://github.com/iOSFDTeam), [官网](https://dreamforge.top)\n* :x: [梦幻工坊](https://apps.apple.com/cn/app/id6483932773)：AI 绘画，基于MJ/SD/DallE，免翻墙，免费\n\n#### handsometong(厦门) - [Twitter](https://twitter.com/Handsometo45560)\n* :white_check_mark: [ImageTools](https://ai-image.tools)：去除肖像背景、去除常见物体背景以及替换背景等功能的免费 AI 工具\n\n#### 星辰(吉林) - [博客](https://lvxianchao.com)\n* :x: [微寻](https://weixunlogin.com)：为个人网站提供微信扫码登录能力\n\n### 2024年5月5号添加\n#### wish - [Github](https://github.com/Shouheng88), [掘金](https://juejin.cn/user/3685218704691469)\n- :x: [英语汪](https://meiyan.tech/app/home?app=english&lang=en)：英语单词查询、句子翻译和复习工具，个人英语单词本。应用基于热力图设计，支持 Android 和 iOS 版本，支持沉浸式翻译和文字扫描。\n- :x: [言叶](https://meiyan.tech/app/home?app=note&lang=zh_CN)：Android 笔记软件、Markdown 笔记、快速笔记，支持云同步，笔记以 md 或者其他格式文件的形式进行存储，支持多层级目录和标签两种笔记管理方式，可以用来和其他平台的笔记软件通过数据同步搭配使用。\n- :x: [Any Secret](https://apps.apple.com/cn/app/any-secret/id6448714682)：适用于 iOS 平台的密码管理软件，支持云同步、独立密码。\n\n### 2024年5月1号添加\n#### yvonuk - [推特](https://twitter.com/mcwangcn)\n* :white_check_mark: [iMessage AI 助手](https://stockai.trade/chat)：无需安装 App，无需翻墙，用苹果设备的 iMessage 直接与原生 ChatGPT 对话\n\n### 2024年4月30号添加\n#### Dilettante258(南京) - [Github](https://github.com/Dilettante258)\n* :x: [tieba-toolbox](https://tbt.dilettante258.cyou/)：贴吧工具箱 (Node.js 全栈实现)，可查发言和数据可视化，二开 API 接口已开源，高性能的爬虫替代 - [更多介绍](https://github.com/Dilettante258/tieba-toolbox)\n\n#### Aissen - [Github](https://github.com/AissenLiu)\n* :x: [IP Address Lookup](https://ipaddress.fun/)：IP 地址查询工具（免费快捷），展示全面的 IP 信息（地理位置、连接信息、安全信息、货币、时区、经纬度等）\n\n### 2024年4月28号添加\n#### Shalom(上海) - [Github](https://github.com/shalom-lab), [博客](https://blog.rlearner.com)\n* :x: [微思文稿](https://vslide.cn/dataviz/)：零代码快速制作交互式数据可视化图表\n\n#### ShurshanX（成都）- [Github](https://github.com/ShurshanX) \n- :white_check_mark: [AI Image Description Generator](https://imagedescriptiongenerator.xyz/)：精准提取图片中的主要元素，解读图片创作目的；可用于科研、艺术创作中图文互搜领域\n\n#### 谢广志 - [Twitter](https://twitter.com/Lumosous)\n- :white_check_mark: [小作卡片](https://kosaku.imxie.club/)：专为生成优雅的卡片而设计的 App\n- :white_check_mark: [几枝](https://jz.imxie.club/)：小众诗词应用\n\n### 2024年4月26号添加\n#### zyronon - [Github](https://github.com/zyronon), [博客](https://juejin.cn/user/377887729139502/posts)\n- :x: [typing-word](https://typing-word.ttentau.top/): 在电脑上背单词、学英语、练习文章的网站 - [更多介绍](https://github.com/zyronon/typing-word)\n\n### 2024年4月25号添加\n#### qwqcode(杭州) - [Github](https://github.com/qwqcode)\n* :white_check_mark: [SubRenamer](https://github.com/qwqcode/SubRenamer)：字幕文件批量改名工具\n\n#### R1ckShi - [Github](https://github.com/R1ckShi) \n* :white_check_mark: [FunClip](https://modelscope.cn/studios/iic/funasr_app_clipvideo/summary)：全自动视频剪辑工具(开源免费)：自动精确语音识别、自由选段裁剪、自动生成字幕 - [更多介绍](https://github.com/alibaba-damo-academy)\n\n#### 7small7(成都) - [GitHub](https://github.com/7small7)\n* :white_check_mark: [兔兔答题](https://www.tutudati.com)：在线考试答题系统，可用于微信考试、付费考试、社会调查问卷、明星知识问答、员工培训考核、模拟自测、企业面试、试题库等多种场景。支持一键导入、智能判卷、试后分析、不限终端等功能。\n\n#### waylonzheng (深圳) - [博客](https://www.waylon.online/)\n* :white_check_mark: [OVO Tab](https://www.waylon.online/ovotab/newtab.html)：管理您的新标签页，支持免费的 ChatGPT、管理书签、海量壁纸、PDF 转换、数据云同步等多种功能 - [更多介绍](https://waylon.online/ovo-tab/)\n\n#### octopus331 - [Github](https://github.com/octopus331)\n* :x: [图生代码](https://www.octopus31.com/code/generate)：根据网页截图、网页 URL 生成前端页面代码\n\n### 2024年4月24日添加\n#### zggsong - [Github](https://github.com/ZGGSONG), [博客](https://zggsong.com)\n* :white_check_mark: [STranslate](https://stranslate.zggsong.com)：即开即用、即用即走的翻译(OCR)工具\n\n#### Aissen\n* :x: [实时金价](https://goldprice.fun)：简洁直观的黄金价格查询网站\n\n#### Quanzhitong - [Github](https://github.com/Quanzhitong)\n* :white_check_mark: [Honey Tab](https://chromewebstore.google.com/detail/honey-tab/ecopjmjelpndnffeaionilmoiocbjcii?hl=zh-CN&utm_source=ext_sidebar)：简单易用的浏览器标签、窗口管理工具，只需三个快捷键\n\n#### 诸葛子房\n* :white_check_mark: [谷歌浏览器 OCR 插件](https://chromewebstore.google.com/detail/ocr/cglnhoallkkhcelfbcdaglcioccollfb?hl=zh-CN&authuser=0)：截图识别图片为文字的 OCR 插件 - [更多介绍](https://www.bilibili.com/video/BV1Xz4216756)\n\n#### hanaTsuk1 - [Github](https://github.com/hanaTsuk1), [掘金](https://juejin.cn/user/2327027529037352)\n* :clock8: [shion](https://shion.app/zh/)：时间追踪软件，定格生活中的瞬间🍂\n\n#### Yu-Core\n* :white_check_mark: [侠客日记](https://github.com/Yu-Core/SwashbucklerDiary)：本地日记 App（开源、跨平台）\n\n### 2024年4月23日添加\n#### Ayden - [Twitter](https://twitter.com/aydengen)\n- :white_check_mark: [ElemSnap](https://chromewebstore.google.com/detail/elemsnap/mblkhbaakhbhiimkbcnmeciblfhmafna)：捕获网页元素，转化为图片自动美化的浏览器插件\n\n#### Ethan Sunray（纽约）\n- :white_check_mark: [AI Image Generator](https://aiimagegenerator.io/)：免费的在线 AI 文本到图像生成工具，支持 AI 纹身生成器、AI 动漫生成器、AI 3D 表情生成器、AI 宝可梦生成器等，无需登录，不限使用次数。\n- :clock8: [AI Video Generator](https://videoai.cc/)：AI 视频生成器，很快会支持 Stable Video Diffusion (SVD) 和 AnimateDiff 在线使用，视频风格转换功能也在加急开发中。\n\n#### 射手科技(珠海) \n* :white_check_mark: [自记账app](https://www.zijizhang.com/)：适用于创业初期，注册公司、需要零申报业务的创业者。自己做老板，自己记账，自动报税\n* :white_check_mark: [自开票app](https://www.zikaipiao.com)：开票一整年，只扫一次脸\n\n#### MrPan(成都) - [Github](https://github.com/easepan), [博客](https://myrest.top/zh-cn/blog)\n* :x: [RunFlow](https://myrest.top/zh-cn/myflow)：类 Wox 和 Alfred 的跨平台效率工具，可以启动应用程序和搜索文件等等，功能通过关键字触发，支持通过插件扩展程序功能 - [更多介绍](https://myrest.top/zh-cn/blog)\n\n#### Tutu（香港）\n* :white_check_mark: [kimi小助手](https://chromewebstore.google.com/detail/kimi%E5%B0%8F%E5%8A%A9%E6%89%8B/lcmnamhindlgdelifemnmkecaabdglle)：帮你在浏览器中更好使用 kimi，让它成为你的 AI 全能生产力工具，具备搜索增强、聊天、页面总结、选中翻译、代码解释等功能\n\n### 2024年4月19日添加\n#### ideasworkcn\n* :x: [创想家 视频拍摄管理](https://vms.ideaswork.cn)：提升独立视频制作人创作生产力！视频项目管理：制作进度、AI 创作、脚本拍摄待办工具库：提词器、语音生成、封面制作、配乐库\n\n#### Kevin不会写代码(成都)\n* :x: [节点导航站](https://linktre.cc)：独立开发者出海工具首选 | 自媒体人的运营黑科技 | 跨境电商小白集散站 | 汇集各类先进的人工智能产品，帮助用户更快了解和使用这些产品, 浏览不同领域的 AI 产品，包括语音识别、图像处理、自然语言处理\n* :x: [节点链接](https://links.bnyer.cn)：短链接生成器,一条短链接精准触达你的目标客户,安全引流获客,公域到私域流量转化黑科技\n\n#### Honwhy Wang - [Github](https://github.com/honwhy)\n* :white_check_mark: [新百词斩助手](https://100-words.pages.dev/)：新百词斩网页助手，支持取词翻译、收藏单词等操作（可同步至百词斩 App）\n\n### 2024年4月18日添加\n#### ChengKeJ - [Github](https://github.com/ChengKeJ)\n* :white_check_mark: [smind.app](https://www.smind.app)：思维脑图：自定义主题、禅定模式、导入导出、结构化、导入图片、Icon、贴纸等\n\n#### mydearcc - [Github](https://github.com/mydearcc/tools)\n* :white_check_mark: [fly63 工具箱](https://www.fly63.com/tool/home.html)：工具箱集合网站(在线、免费、高效、好用)包含：开发文档、格式转换、加密/解密、站长工具、代码生成、CSS 样式、JSON格式化、二维码、图片处理、生活娱乐、文字处理等工具\n\n### 2024年4月17日添加\n#### lee森（德国）\n* :white_check_mark: [haiwai](https://haiwai.info)：搜索海外的娱乐资源，电影，动画，电视剧，等等。\n\n#### Shichao（北京）\n* :x: [sunost](https://sunost.com)：基于 SUNO 生成背景音乐的工具，专门适用于电影、游戏、短视频做无版权背景音乐使用\n* :x: [toolss.ai](https://www.toolss.ai)：AI 工具导航网站，收录 12000+ 个AI工具，支持分类搜索，每日更新\n\n### 2024年4月16日添加\n#### eilong (昆明) - [Github](https://github.com/nniai/ViBoard)\n* :x: [ViBoard](https://nniai.com)：跨平台数据可视化大屏软件，让高端图表不再依赖开发人员、数据库和服务器。\n\n### 2024年4月15日添加\n#### Indie Maker Fox - [Github](https://github/javayhu) [Twitter](https://x.com/indie_maker_fox) [Blog](https://mksaas.me)\n* :white_check_mark: [海棠诗社](https://haitang.app)：古诗词学习和创作的网站，数据丰富，界面干净，支持全局搜索、每日一诗、暗黑模式、诗词收藏，兼容移动端。\n* :x: [独立开发者导航站](https://www.indiehackers.site)：独立开发者导航站，网站汇集各种实用的产品工具和指南教程，助力开发者的独立产品早日上线，同时也是独立开发者展示独立应用的平台，欢迎大家来提交自己的独立产品。\n\n### 2024年4月14日添加\n#### 为大宝宝（北京）\n* :white_check_mark: [DS Cloud](https://apps.apple.com/cn/app/id6476057278)：集文件管理、视频播放和音频播放于一身的 NAS 融合怪 App，支持文件管理和文件分享，支持群晖和 Emby 登录，支持全视频格式和无损音频播放\n\n#### Mose - [Github](https://github.com/1003715231)\n* :white_check_mark: [AI Undetect](https://www.aiundetect.com/)：能绕过 AI 检测器的、生产不可检测内容的人工智能写作工具\n* :white_check_mark: [AI Humanizer](https://aihumanize.io/)：也是 AI 改写工具，不过和 aiundetect 交互不一样，面向的 SEO 词汇不同\n\n#### 欧维Ove（西安）\n* :white_check_mark: [简单设计](https://www.jiandan.link)：简单好用的设计工具，支持设计海报、LOGO、封面图，支持图片压缩、裁剪、格式转换等\n\n### 2024年4月13日添加\n#### didid - [Github](https://github.com/dodid)\n* :white_check_mark: [Minitrade](https://dodid.github.io/minitrade/)：为个人投资者设计的量化回测交易系统\n* :white_check_mark: [在线Markdown转图片](https://markdown2image.streamlit.app)：将 Markdown 转换成多张图片，方便在小红书上发布内容\n* :white_check_mark: [北京四中考试成绩分析](https://examstats.streamlit.app)：考试成绩可视化和分析，方便替换成其他学校\n\n#### 阿禅 Jason Ng - [主页](http://wujiaxian.com/)\n* :white_check_mark: [MyIP](https://ipcheck.ing/) : 瑞士军刀般的多功能的 IP 工具箱 - [更多介绍](https://github.com/jason5ng32/MyIP) \n* :white_check_mark: [OhEarningsCal](https://stock.retire.money/) : 自动化的美股财报日历订阅器 - [更多介绍](https://github.com/jason5ng32/OhEarningsCal)\n* :white_check_mark: [Macify](https://chromewebstore.google.com/detail/macify-macos-screensaver/lgdipcalomggcjkohjhkhkbcpgladnoe?hl=en) : 将 Chrome 的新标签页变成 macOS 屏保的华丽航拍视频 - [更多介绍](https://github.com/jason5ng32/macOS-Screen-Saver-as-Chrome-New-Tab)\n* :white_check_mark: [躺平计算器](https://retire.money/) : 根据当前的资产、收入水平、负债，以及所在国家通胀率的情况，计算立即躺平的可行性\n\n### 2024年4月12日添加\n#### 爱心发电丶(湖南) - [Blog](https://nicen.cn/)\n* :white_check_mark: [DIY制作手机壳](https://nicen.cn/wp-content/uploads/replace/2023/06/14/069586ca1329da288259ce9e6fc3e7c6.jpeg)：在线 DIY 制作手机壳的小程序 - [更多介绍](https://gitee.com/friend-nicen/DIY)\n* :white_check_mark: [文件收集小程序](https://nicen.cn/wp-content/uploads/2022/07/gh_3a8e81971071_430.jpg)：在线收集文件的微信小程序\n* :white_check_mark: [万物皆可DIY](https://douyin.nicen.cn/m.html)：在线 DIY 制作手机壳、衣服、抱枕、水杯等物品的 H5 应用\n\n#### seven - [Github](https://github.com/SGAMERyu)\n* :x: [SaaStores](https://sasstores.top/): 收录网上优秀的 SaaS 软件，AI 知识，截图资源的网站\n\n### 2024年4月12日添加\n#### BindBook - [主页](https://khaos.net.cn)\n* :white_check_mark: [BindBook](https://s21.ax1x.com/2024/03/31/pF7mmKx.png)：社交关系记录小程序，同时提供微信提醒倒数日等功能。\n\n### 2024年4月10日添加\n#### H寒峰(杭州) - [博客](https://hagerhu.com/)，[Twiter](https://twitter.com/hagerhu),\n* :white_check_mark: [TTW: Travel Memoir from Photos](https://apps.apple.com/us/app/ttw-travel-memoir-from-photos/id6473322389)：旅行🗺️，使用手机中的照片生成你的旅行时间线，看过的风景，去过的地方！\n\n#### 奔跑的小山猪 - [Github](https://github.com/uestccokey), [Twiter](https://twitter.com/uestccokey), [官网](http://www.ezandroid.cn/)\n* :white_check_mark: [阿Q专业版](https://www.pgyer.com/aqgo)：手机上具有职业九段水平的围棋 AI 软件！\n* :white_check_mark: [阿Q连线器](https://www.pgyer.com/connector)：手机上的通用围棋 AI 连线器，看棋、遛狗必备！\n* :white_check_mark: [阿Q对弈宝](https://www.pgyer.com/aqrecorder)：通过摄像头自动记谱，让你的棋盘升级为智能棋盘！\n* :white_check_mark: [阿Q棋钟](https://www.pgyer.com/aqclock)：美观又易用的围棋、象棋棋钟软件\n\n### 2024年4月9日添加\n#### 鸭鸭「カモ」(厦门) - [GitHub](https://github.com/DuckDuckStudio), [个人网页](https://duckduckstudio.github.io/yazicbs.github.io/), [X(Twitter)](https://twitter.com/JinchengFang)\n* :white_check_mark: [芙芙工具箱](https://duckduckstudio.github.io/yazicbs.github.io/Tools/Fufu_Tools/)：Windows 上的开源实用工具箱，支持各种快捷操作。\n\n#### SleepyZone(杭州) - [Github](https://github.com/sleepy-zone), [博客](https://sleepy-zone.github.io/)\n* :white_check_mark: [Photor - 截图美化](https://www.photor.fun/)：实用、美观、强大的截图美化工具，同时提供在线版、浏览器插件、uTools 插件。\n* :white_check_mark: [fabritor](https://fabritor.surge.sh/)：开源的创意图片编辑器，可以应用于海报设计、小红书公众号封面设计、banner 设计等场景。\n\n#### Wesley(上海) - [Github](https://github.com/westlinkin)\n* 🕗 [White80 Football](https://white80.football)：AI橄榄球 🏈 助理教练，战术识别、分析、预测及生成\n* :white_check_mark: [InterviewAI](https://interviewai.me)：AI模拟面试，轻松通过下一次面试\n\n### 2024年4月6日添加\n#### Touchumind - [Github](https://github.com/thundernet8)\n* :x: [VoxScripts](https://voxscripts.com)：专注于自动化视频转录文本、字幕制作、字幕翻译和配音、短视频创作的桌面软件。适用于多种学习、工作、娱乐场景，如英语学习、外语慕课视频观看、外语生肉视频抢先观看、视频翻译搬运、剧本配音或配视频。\n\n### 2024年4月4日添加\n#### 变当(广州市) - [博客](https://xgmm.me)\n* :white_check_mark: [记一杯](https://apps.apple.com/cn/app/%E8%AE%B0%E4%B8%80%E6%9D%AF/id6478443878)：奶茶、咖啡、饮品全记录 App\n\n### 2024年4月3日添加\n#### 李志博(北京)\n* :white_check_mark: [Youtube Dubbing](https://www.youtube-dubbing.com/)：打破在线观看视频的语言障碍\n\n### 2024年4月2日添加\n#### Framist - [GitHub](https://github.com/framist)\n* :white_check_mark: [SAFC](https://framist.github.io/safc/)：又一个研究生导师评价平台。不同的是此平台完全公益、共享、开放，在 Telegram 上匿名查询和评价导师以保护隐私，支持楼中楼回复。开发目标是形成一个面向大学生研究生的元平台、弱中心的评价交流社群 - [更多介绍](https://github.com/framist/SAFC-bot)\n\n\n### 2024年3月30日添加\n#### Qiwei - [GitHub](https://github.com/qiweiii)\n* :white_check_mark: [Github 自定义消息提示插件](https://github.com/qiweiii/github-custom-notifier)：支持一些 GitHub 官方不支持的事件的消息提示。比如：创建 label 事件、其他人被 @、issue 评论包含了某些关键词 - [更多介绍](https://github.com/ruanyf/weekly/issues/4199)\n\n\n### 2024年3月26日添加\n#### MarkZhao - [Twitter](https://twitter.com/mark_zhao_)\n* :white_check_mark: [浏览器书签同步 Notion](https://www.bookmarkstonotion.com)：将浏览器书签同步至 Notion 数据库。自动同步书签增删改。支持子文件夹、多连接。\n\n#### DawnRiver - [Twitter](https://twitter.com/LuTcdspring)\n* :white_check_mark: [Meebox](https://meebox.io)：集文本、密码、图片、视频、文件于一身的加密存储 APP - [更多介绍](https://meebox.io/docs/)\n\n### 2024年3月20号添加\n#### zzzmh (上海) - [Blog](https://zzzmh.cn)\n* :white_check_mark: [极简壁纸](https://bz.zzzmh.cn)：PC 壁纸在线预览下载网站 - [更多介绍](https://bz.zzzmh.cn/about)\n* :white_check_mark: [极简插件](https://chrome.zzzmh.cn)：Chrome 浏览器插件下载网站 - [更多介绍](https://chrome.zzzmh.cn/about)\n\n### 2024年3月18号添加\n#### 程序员鱼皮 - [Github](https://github.com/liyupi)\n* :white_check_mark: [SQL 闯关式自学网](https://github.com/liyupi/sql-mother)：交互式 SQL 入门学习网站\n* :white_check_mark: [SQL 数据生成器](https://github.com/liyupi/sql-father-frontend-public)：模拟数据生成器项目\n* :white_check_mark: [免费网络安全自学网](https://github.com/liyupi/ceshiya)：网络安全入门学习网站﻿\n* :white_check_mark: [结构化 SQL 语句生成器](https://github.com/liyupi/sql-generator)：(用更优雅的方式)快速生成复杂的嵌套 SQL \n\n### 2024年3月16号添加\n#### oiov(成都) - [Github](https://github.com/oiov)\n* :white_check_mark: [vmail](https://vmail.dev)：临时邮箱生成 - [更多介绍](https://github.com/oiov/vmail)\n\n### 2024年3月15号添加\n#### Ethan Sunray（纽约）\n* :white_check_mark: [Remove Bg](https://removebg.one/)：100% 免费的在线 AI 抠图工具\n* :white_check_mark: [Restore Photos](https://restorephotos.one/)：100% 免费的 AI 修复黑白照片和模糊人脸照片工具\n* :white_check_mark: [Content Credentials](https://contentcredentials.io/)：帮助判断线上内容的真实性和来源的创新开放技术。随着深度伪造、语音克隆和合成媒体的兴起，判断内容的真实性变得越来越困难。Content Credentials 基于 C2PA 协议提供内容创建过程、是否涉及 AI 及其编辑历史的重要信息，帮助解决这一问题\n* :x: [Sora Build](https://sora.build)：可以搜索 OpenAI Sora 视频的在线网站，每天都在收录新的 Sora 视频，目前已收录 280+ 个视频\n\n### 2024年3月13号添加\n#### 诸葛子房\n* :white_check_mark: [AI时间线](http://www.ai-timeline.top)：基于AI将某个事件以时间线的方式产出的AI网站\n* :x: [AI好物](https://www.ai-code.online/)：好物推荐网站，当你有需求又不知道买什么的时候，可以根据输入内容给你推荐商品 - [更多介绍](https://www.ai-code.online/story)\n\n### 2024年3月7号添加\n#### oBlank [Twitter](https://twitter.com/oBlankX)\n* :white_check_mark: [简单记](https://apps.apple.com/cn/app/%E7%AE%80%E5%8D%95%E8%AE%B0-noteit/id1659178001)：本地私密日记/记事本，智能标签，集成 OpenAI，iOS 应用\n\n### 2024年3月6号添加\n#### 甘小蔗(重庆) - [博客](https://gxzv.com/)\n* :white_check_mark: [人格九道](https://enneatao.com/)：人格九道是基于 Enneagram 理论学说的数字化产品，皆在帮助人们实现自我探索的精神需求 - [更多介绍](https://enneatao.com/blog/enneagram/introduce/)\n\n### 2024年3月5号添加\n#### j20cc(武汉)\n* :white_check_mark: [小狗听听](https://podcast.j20.cc/)：将在线视频转为本地播客的 iOS 应用\n\n#### honwhy\n* :white_check_mark: [Welibrary](https://chromewebstore.google.com/detail/ffcdmbkbdhoplncikkpdcgknacckookm)：将图书网站与城市图书馆联动起来 - [更多介绍](https://welibrary.pages.dev/intro)\n\n#### iyuhang - [Github](https://github.com/iyuhang)\n* :white_check_mark: [犬岛 交友APP](https://apps.apple.com/cn/app/犬岛-上岛重新认识我/id6450510581): 通过深度问答建立社交画像的高质量交友 APP，纯银作品。[安卓](https://www.quandao.chat)\n\n### 2024年3月4号添加\n#### gitbobobo - [Github](https://github.com/gitbobobo), [博客](https://aqzscn.cn/)\n* :white_check_mark: [音流](https://github.com/gitbobobo/StreamMusic)：NAS 音乐播放器，支持多种音乐服务，可在安卓/iOS/macOS/Windows 平台运行 - [AppStore](https://apps.apple.com/cn/app/%E9%9F%B3%E6%B5%81-%E8%BF%9E%E6%8E%A5%E4%BD%A0%E7%9A%84%E9%9F%B3%E4%B9%90/id6449966496), [下载地址](https://aqzscn.cn/archives/stream-music-versions)\n\n### 2024年3月3号添加\n#### 程序员热水 - [Github](https://github.com/acmenlei)\n* :white_check_mark: [CodeCV简历](https://codecv.top)：超高颜值的简历制作工具，界面简洁不花哨，支持 Markdown 和 所见即所得 两种编辑模式，专注内容，布局排版自动生成\n\n#### huanghanzhilian(北京) - [Github](https://github.com/huanghanzhilian), [博客](https://blog.huanghanlian.com/)\n* :white_check_mark: [C-Shopping](http://shop.huanghanlian.com/)：精美的 Web 电商系统，支持响应式交互，界面优雅，功能丰富，小巧迅速，包含电商平台 MVP 完整功能，具备良好的审美风格与编码设计 - [更多介绍](https://github.com/huanghanzhilian/c-shopping)\n\n#### ShawnPhang(广州) - [Github](https://github.com/palxiao/poster-design), [博客](https://m.palxp.cn/#/)\n* :white_check_mark: [迅排设计 - PosterDesign](https://design.palxp.cn/home)：在线海报图片设计器，漂亮易用且功能强大。适用于多种场景：海报设计、电商分享图、文章长图、视频/公众号封面生成等，结合AI等工具，让你轻松实现创意、迅速排版 - [更多介绍](https://xp.palxp.cn/#/)\n\n#### LucasChenZQ\n* :white_check_mark: [小旅星 App](https://apps.apple.com/cn/app/id6468434010)：旅行指南与行程规划 App，提供众多开箱即用的旅行路线、目的地旅行资讯（完善中），也可以制定自己的行程。可以添加地点、航班、列车到旅行计划中，并且自动为用户预估日程时间安排。如果与朋友一起出行，还可以邀请朋友加入旅行、共同编辑, [Android 版下载地址](https://static.triplenty.com/xiaolvxing.apk)\n\n### 2024年3月2号添加\n#### H1DDENADM1N (邯郸) - [Github](https://github.com/H1DDENADM1N)\n* :white_check_mark: [CapsWriter-Offline-GUI](https://github.com/H1DDENADM1N/CapsWriter-Offline)：Windows 端 离线语音输入、中译英、字幕转录；在线多译多、云剪贴板。 - [更多介绍](https://github.com/H1DDENADM1N/CapsWriter-Offline?tab=readme-ov-file#-%E7%9B%AE%E5%BD%95)\n\n### 2024年3月1号添加\n#### TrumanDu(西安) - [Github](https://github.com/TrumanDu), [博客](http://blog.trumandu.top/)\n* :white_check_mark: [Toolkit](http://toolkit.trumandu.top/)：极简、插件化的工具集！utools 对标开源版\n\n#### morestrive(武汉) - [Github](https://github.com/dromara/yft-design)  \n* :white_check_mark: [yft在线设计](https://yft.design)：基于 canvas 的开源版【稿定设计】。  导入稿定 PDF 模板完美还原，导入PSD，支持导出为图片/PDF/SVG - [更多介绍](https://github.com/dromara/yft-design)\n\n#### meetqy(成都) - [Github](https://github.com/meetqy)\n* :white_check_mark: [aspoem](https://aspoem.com)： 现代化诗词学习网站\n\n#### 菩提尘埃(厦门)\n* :white_check_mark: [奇趣网站](https://qiqu.dreamthere.cn)：奇趣网站是您的在线探索伙伴，提供您没见过的网站，为网站收藏家增添色彩，加入我们，开启您的奇趣探索之旅 - [更多介绍](https://nav.dreamthere.cn/about)\n* :white_check_mark: [创意导航](https://idea.dreamthere.cn)：使用我们的创意导航服务，探索未知的网路世界。我们提供最新，最独特的网站链接，帮助你发现互联网的新领域\n\n#### AtlanticF(成都) - [GitHub](https://github.com/AtlanticF)\n* :white_check_mark: [AI语音记账](https://github.com/AtlanticF/chinese-independent-developer/assets/14820026/83165766-9dca-47fb-a475-49892f1f719c)：(微信小程序) AI语音识别记账\n\n### 2024年2月29号添加\n#### zhenming(上海)\n* :white_check_mark: [xldream](https://www.xldream.com)：免费 AIGC 图片素材网\n\n#### shartoo(上海) - [Github](https://github.com/shartoo), [博客](https://www.zhihu.com/people/xia-zhi-66-34)\n* :white_check_mark: [webhub123](https://www.webhub123.com/#/home/more)：跨站收藏夹，网站收录管理和分享\n\n#### Zoyou(上海)\n* :white_check_mark: [PhotoFun](https://www.photofun.cn/)：📷高效的在线图片编辑压缩处理工具。\n\n### 2024年2月28号添加\n\n#### Qiwei(上海) - [GitHub](https://github.com/qiweiii)\n* :white_check_mark: [Markdown Sticky Note](https://chrome.google.com/webstore/detail/aiakblgmlabokilgljkglggnpflljdgp) 浏览器插件，可以在任何网页创建 Markdown 便签并保存 - [源代码](https://github.com/qiweiii/markdown-sticky-notes)\n\n#### Fooying(福建) - [Github](https://github.com/fooying),\n* :white_check_mark: [SEC.CAFE安全咖啡](https://sec.cafe)：安全漏洞情报聚合去重、订阅平台\n\n#### AILOOKME (江苏)\n* :white_check_mark: [AI工具箱](https://www.ailookme.com)：人工智能领域工具导航网站\n\n#### 潮汐表表(青岛) - [博客](http://blog.75271.com)\n* :white_check_mark: [潮汐表表](http://images.75271.com/wp-content/uploads/2024/01/2024012208223581.jpg)：看潮汐,查天气就在潮汐表表,出行必备小程序 - [更多介绍](https://blog.75271.com/55685.html)\n\n#### flyun(北京) - [Github](https://github.com/flyun)\n* :white_check_mark: [ChatAir](https://github.com/flyun/chatAir)：OpenAI 和 Gemini 的原生 Android 客户端（开源）\n\n#### Jebberwocky - [Github](https://github.com/jebberwocky)\n* :white_check_mark: [我不会说出去](http://chat.colbt.cc/)：匿名心理咨询/宣泄（和 AI 对话）\n\n\n### 2024年2月25号添加\n#### 刚师傅(长沙) - [Github](https://github.com/margox)\n* :white_check_mark: [简约简历](https://jianli.online)：在线简历创建工具（简约风格），支持在线预览、评论和生成高清PDF\n* :white_check_mark: [RepicApp](https://repic.cc)：图片压缩工具，支持多种格式的图片，支持压缩前后细节对比\n\n### 2024年2月23号添加\n#### Tans(佛山)\n* :white_check_mark: [Photo Mint](https://github.com/tans/photo-mint.git)：图片批量压缩工具 (基于 Tauri, 开源)\n\n### 2024年2月21号添加\n#### 王君敕(南京) - [Github](https://github.com/stardust), [博客](https://wangxuan.me)\n* :white_check_mark: [拼拼古诗](https://wangxuan.me/chinese_poem/)：古诗拼图小游戏，涵盖唐诗三百首和小学初中高中教科书中的古诗 - [更多介绍](https://mp.weixin.qq.com/s/G5Swlt7hH_3tWZDZ1ffgqw)\n\n### 2024年2月18号添加\n#### ThinkStu(北京) - [Github](https://github.com/Bistutu)\n* :white_check_mark: [流畅阅读-浏览器翻译插件](https://github.com/Bistutu/FluentRead)：有人工智能翻译引擎的浏览器插件，支持 OpenAI、Gemini、通义千问、文心一言、智谱清言等模型，可以为网站提供更加友好的翻译，让所有人都能拥有母语般的阅读体验。\n\n### 2024年1月31号添加\n#### Xiao Hanyu - [Github](https://github.com/xiaohanyu), [Twitter](https://twitter.com/xiaohanyu1988)\n* :white_check_mark: [PPResume](https://ppresume.com?utm_source=chinese-independent-developer)：基于 LaTeX 的简历制作 Web App，提供极高质量的简历排版和 PDF 输出\n\n### 2024年1月30号添加\n#### windowye(北京) - [Github](https://github.com/windowye)\n* :x: [CoSS](https://w-coss.space)：聚合主流文件存储服务和文件操作服务\n\n### 2024年1月25号添加\n#### FreeMind-LJ - [Github](https://github.com/FreeMind-LJ)\n* :white_check_mark: [FreeMind](https://freemind.fit)：以大自然的声音为灵感，轻松创建专注或放松的音乐氛围。无需账户，无需麻烦——只有纯粹的宁静。无论是在繁忙的办公室，还是在家中的安静角落，FreeMind 将简约与宁静相结合，为您提供一个没有干扰的空间\n\n\n### 2024年1月22号添加\n#### Lykin(广州) - [Github](https://github.com/tiny-craft/tiny-rdm)\n* :white_check_mark: [Tiny RDM](https://redis.tinycraft.cc/zh/): 美观易用、极致轻量的 Redis 桌面客户端\n\n### 2024年1月20号添加\n#### Fun(广州) - [Github](https://github.com/17fun)\n* :white_check_mark: [17fei.fun](https://17fei.fun): 情侣互动小游戏集合\n\n### 2024年1月18号添加\n#### yesmore(成都) - [Github](https://github.com/yesmore)\n* :white_check_mark: [iconce](https://iconce.com)：在线 SVG 图标生成器\n\n#### ddd702(广州) - [Github](https://github.com/ddd702) ,[博客](https://qtcat.cn)\n* :white_check_mark: [DE好图壁纸](https://raw.githubusercontent.com/ddd702/learnfe/main/bovi8x8htx.png): 分享一些图片，壁纸的小程序\n\n### 2024年1月12号添加\n#### Leo(上海) - [Github](https://github.com/LHRUN/paint-board)\n* :white_check_mark: [Paint Board](https://songlh.top/paint-board/)：功能强大的创意画板，支持多端\n\n### 2024年1月12号添加\n#### 罗伊 - [Twitter](https://twitter.com/LuoSays)\n* :white_check_mark: [EarlyBird](https://earlybird.im)：快速搭建落地页验证产品 idea 的低代码建站工具\n* :white_check_mark: [Jing Bio](https://jingle.bio) - 轻松创建优雅的个人品牌页面\n* :white_check_mark: [HeyForm](https://heyform.net) - 对话式表单\n* :white_check_mark: [TinySnap](https://tinysnap.app) - 截图美化工具\n\n### 2024年1月9号添加\n#### lizhichao - [Github](https://github.com/lizhichao)\n* :white_check_mark: [在线甘特图工具](https://zz-plan.com): 可以在线使用, 也可以私有化部署 - [更多介绍](https://zz-plan.com/share/87f1340286f1343ba5)\n\n### 2024年1月5号添加\n#### peacefullmind - [Github](https://github.com/peacefullmind)\n* :x: [易匹配](https://www.yipipei.com/): 面向\"表哥表姐\"的表格匹配工具, 只需要在网页上点点点, 就可以实现数据匹配, 还可以自定义阈值, 实现模糊匹配.\n\n### 2023年12月31号添加\n---\n#### MrXujiang(重庆) - [Github](https://github.com/MrXujiang)\n* :white_check_mark: [h5-dooring](https://github.com/MrXujiang/h5-Dooring): 开箱即用的零代码搭建平台, 致力于让页面制作更简单\n\n### 2023年12月29号添加\n---\n#### GenOuka(湖南) - [Github](https://github.com/GenOuka)\n* :x: [Rare计划](https://rare.genouka.rr.nu/)：发布了一系列使智能手表更好用、更易用、更实用的程序。例如 RareBox 可以让手表用户在手表上更便捷地安装程序。适用于普通用户和开发者，主要面向普通用户。\n\n#### ThinkStu(上海) - [Github](https://github.com/Bistutu)\n* :white_check_mark: [流畅阅读](https://github.com/Bistutu/FluentRead)：浏览器油猴插件，基于上下文语境的人工智能翻译引擎，为部分网站提供精准翻译，让所有人都能够拥有基于母语般的阅读体验。\n\n\n### 2023年12月27号添加\n---\n#### jianchang512(青岛) - [Github](https://github.com/jianchang512)\n* :white_check_mark: [人声和背景音乐分离工具](https://github.com/jianchang512/vocal-separate)：极简的人声和背景音乐分离工具，本地化网页操作，无需连接外网，使用 2stems/4stems/5stems 模型。\n\n* :white_check_mark: [CV 声音克隆工具](https://github.com/jianchang512/clone-voice)：声音克隆工具，可使用任何人类音色，将一段文字合成为使用该音色说话的声音，或者将一个声音使用该音色转换为另一个声音。\n\n\n### 2023年12月19号添加\n---\n#### 风逝\n* :white_check_mark: [Tabs Fast Easy](https://chromewebstore.google.com/detail/tabs-fast-easy/falglioamaogaliloglbhkannkjlpjil)：改变你的 Tab 页浏览方式：简化 、分组、聚焦专注和分屏管理等体验 - [更多介绍](https://www.producthunt.com/posts/tabs-fast-easy-2)\n\n\n### 2023年12月18号添加\n---\n#### webjuzi(杭州) - [博客](https://www.inav.site)\n* :white_check_mark: [变量命名](https://www.inav.site/tools/#/p/var/var)：输入中文自动翻译为各种格式的变量名,可设置一种格式自动复制到剪切板\n\n#### mengxianliang(北京) - [主页](https://mengxianliang.com)\n* :white_check_mark: [一休](https://apps.apple.com/cn/app/%E4%B8%80%E4%BC%91-%E4%BC%91%E6%81%AF%E4%B8%80%E4%BC%9A%E5%84%BF/id6467176005)：macOS 休息提醒工具\n\n#### menglike - [Github](https://github.com/menglike)\n* :white_check_mark: [免费API共享平台](https://www.liangmlk.cn)：给广大开发者提供免费 API 共享平台,目前共计 400+ 个API接口，欢迎大家使用\n\n\n### 2023年12月14号添加\n---\n#### PengChen96 - [Github](https://github.com/PengChen96)\n* :white_check_mark: [ajax-tools](https://chromewebstore.google.com/detail/ajax-interceptor-tools/kphegobalneikdjnboeiheiklpbbhncm)：修改 Ajax 请求及响应的 Chrome 扩展插件\n\n\n### 2023年12月11号添加\n---\n#### FreeMind-LJ - [Github](https://github.com/FreeMind-LJ)\n* :white_check_mark: [什么值得看](https://smzdk.top)：简洁干净的高质量全球热点资讯网站\n\n#### heygsc - [Github](https://github.com/heygsc)\n* :white_check_mark: [数数游戏](https://count-puzzle.pages.dev/)：数数游戏，简洁但不简单，交互细节人性化 (PC) \n\n\n### 2023年12月5号添加\n---\n#### gorpeln(北京) - [Github](https://github.com/gorpeln), [博客](https://gorpeln.top/)\n* :x: [时光本](https://apps.apple.com/cn/app/%E6%97%B6%E5%85%89%E6%9C%AC-%E6%97%A5%E8%AE%B0%E6%9C%AC-%E7%AC%94%E8%AE%B0%E6%9C%AC-%E8%AE%B0%E4%BA%8B%E6%9C%AC-%E5%A4%87%E5%BF%98%E5%BD%95/id1495623965)：专注效率与安全的笔记工具\n\n### 2023年12月4号添加\n---\n#### j20cc(武汉) - [官网](https://j20.cc/)\n* :x: [云剪切板](https://cv.j20.cc)：无依赖即用即走的剪切板，支持 web 与 curl\n* :x: [Github 图床](https://pic.j20.cc)：把你的 Github 仓库变成免费图床\n\n#### CSBuyer(江西) - [官网](https://www.csbuyer.com)\n* :white_check_mark: [Steam 自动捡漏机器人](https://www.csbuyer.com)：在 Steam 市场自动购买低磨损、特殊模板 CSGO 饰品的工具 - [更多介绍](https://support.qq.com/product/611323/faqs-more/?id=147296)\n* :white_check_mark: [美国免税地址生成器](https://www.csbuyer.com/workbench/address)：自动生成美国免税地址，可用于填写 Steam 美区账号账单地址\n\n### 2023年12月1号添加\n---\n#### ThinkStu(上海) - [Github](https://github.com/Bistutu)\n* :white_check_mark: [音乐歌单迁移助手](https://music.unmeta.cn/)：迁移网易云/QQ音乐歌单到 Apple Music、Youtube Music、Spotify\n\n### 2023年11月17号添加\n---\n#### bimohxh(成都) - [Github](https://github.com/bimohxh)\n* :white_check_mark: [JSONT](https://www.jsont.run/)：简洁强大的 JSON 格式化工具 - [更多介绍](https://www.jsont.run/about)\n\n### 2023年11月14号添加\n---\n#### ysnows(北京) - [Github](https://github.com/ysnows), [Twitter](https://twitter.com/FrostyEveing)\n* :white_check_mark: [Enconvo](https://enconvo.com)：AI Launcher，Mac Copilot 客户端\n\n#### 简具科技(杭州) -  [官网](http://jianju.3ddysj.com)\n* :x: [抖音高转化精准词获取工具](http://jianju.3ddysj.com/douyinxialachi.html)：一键自动挖掘抖音下拉热词,分析计算出综合得分高的抖音高转化精准免费流量词获取工具 - [更多介绍](https://ba0k26ibyp.feishu.cn/docx/AyaqdVqk8oKSk3x9dOxc99hHnCd)\n\n### 2023年11月13号添加\n---\n#### 控Kong(广州) - [小红书](https://www.xiaohongshu.com/user/profile/5b5c7e7e4eacab25f7faa410)\n* :white_check_mark: [AI食谱](https://user-images.githubusercontent.com/17782609/282380944-121b80d7-c981-4502-b91f-aa4de163fa13.jpg)：(微信小程序) 根据体重与万能减脂/增肌公式自动生成食谱，达到效果\n\n### 2023年11月5号添加\n---\n#### yvonuk - [推特](https://x.com/mcwangcn?s=21)\n* :white_check_mark: [StockAI.Trade](https://stockai.trade/)： AI 选股分析网站（基于 ChatGPT），完全免费，无需注册 - [更多介绍](https://xueqiu.com/2012445484/263058893)\n\n### 2023年11月4号添加\n---\n#### 林建彧 - [GitHub](https://github.com/CheneyLin)\n* :x: [DevShots](https://devshots.gpwzw.com)：Online Developer Tool to Create Code Share Image - [更多介绍](https://github.com/70Apps/DevShots)\n\n#### VOME(澳大利亚)  \n* :x: [VOME](https://apps.apple.com/au/app/vome/id6468956601)：极简的语音转文字 Memo 应用 - [更多介绍](https://iduo.ai)\n\n### 2023年11月3号添加\n---\n#### 硬地骇客(杭州) - [官网](https://hardhacker.com) \n* :white_check_mark: [Podwise](https://podwise.xyz/)：专为播客听友设计的 AI 知识管理应用\n\n#### yesmore(成都) - [Github](https://github.com/yesmore)\n* :x: [Inke笔记](https://inke.app)：集成 AI 写作/润色和多人协作的 Web 笔记本\n\n#### duyafeng\n* :white_check_mark: [Tabs Smart Grouping](https://chrome.google.com/webstore/detail/tabs-smart-grouping/ijljhpdhecidmiaimeaalnfgoogcmmme?hl=zh-CN&authuser=0)：(浏览器插件) 可以对浏览器已打开 Tab 进行自动分组\n\n### 2023年11月2号添加\n---\n#### Selenium39(广州) - [Github](http://github.com/Selenium39)\n* :x: [ChatPPT](http://chatppt.closeai.red)：用 ChatGPT-4 快速创建 PowerPoint\n\n#### marmot-z(杭州) - [GitHub](https://github.com/marmot-z)\n* :white_check_mark:  [百词斩助手](https://www.bilibili.com/video/BV1zj411Z7LM)：实时与百词斩 APP 协同操作的浏览器翻译插件\n\n#### changwu - [GitHub](https://github.com/changwu/)\n* :white_check_mark:  [虾答](https://xiada.cn)：BestGPT + 知识库 AI：只要3分钟，拥有属于自己的智能代理\n\n#### soar - [推特](https://twitter.com/codersoar)\n* :x:  [偷懒爱好者周刊](https://toolight.zhubai.love/)：分享产品、工具、新鲜事，每周三发布\n\n### 2023年11月1号添加\n---\n#### assmdx - [推特](https://x.com/assmdx)\n* :x:  [文丑](https://wenchou.top)：更好用的 AI 助手平台, [App 端](https://wenchou.top/laxin.html): \n\n### 2023年10月31号添加\n---\n#### 菩提尘埃(厦门)\n* :white_check_mark: [AI导航](https://ai.dreamthere.cn)：搜集最新 AI 站点，推荐优质 AI 网站，推广优质人工智能各类网站 - [更多介绍](https://nav.dreamthere.cn/about)\n\n#### beijing(北京) - [Github](https://github.com/Gavin888888)\n* :white_check_mark: [表情小程序-前后台源码](https://ext.dcloud.net.cn/plugin?id=14972)：斗图表情小程序前后台都有 (开源免费) 后台管理系统可批量管理前端小程序形成矩阵\n\n\n### 2023年10月21号添加\n---\n#### ohttps\n* :white_check_mark: [OHTTPS](https://ohttps.com/)：免费申请 HTTPS 通配符证书，提供证书自动化更新、自动化部署、自动化监控服务，支持自动化部署证书至阿里云、腾讯云、七牛云等云厂商的 CDN、SLB 等，以及部署至 Docker 容器、SSH、API 接口、宝塔面板等，一站式解决网站证书问题\n\n### 2023年10月16号添加\n---\n#### Jessen Wang(上海) - [博客](https://www.jessenbox.com/)\n* :white_check_mark: [极简换算](https://apps.apple.com/cn/app/id6448924181)：高效简洁的单位换算和效率计算器, iOS App  - [更多介绍](https://www.jessenbox.com/index.php/2023/06/07/%e5%a4%9a%e5%85%83%e5%b7%a5%e5%85%b7%e7%ae%b1/)\n\n### 2023年10月12号添加\n---\n#### hefengbao(成都) - [Github](https://github.com/hefengbao), [8ug.icu](https://www.8ug.icu)\n* :white_check_mark: [京墨](https://github.com/hefengbao/jingmo/releases)：古诗词文（名句）、歇后语、成语阅读 Android APP (开源免费) - [更多介绍](https://github.com/hefengbao/jingmo)\n\n### 2023年10月11号添加\n---\n#### codelover - [Github](https://github.com/lovercode)\n* :white_check_mark: [MyServers](https://myservers.codeloverme.cn/)：一个 App 监控管理你所有的服务器以及各种服务端个人应用\n\n#### sx1989827 - [Github](https://github.com/sx1989827)\n* :x: [Teamlinker](https://team-linker.com/): 团队协作平台。可以联系成员，分配任务，开始会议，安排各项事务，管理文件等。\n\n### 2023年10月7号添加\n---\n#### 未道科技(杭州) - [官网](https://helper.aiwave.cc)\n* :x: [未道帮](https://helper.aiwave.cc/)：AI 能力聚合站，支持微软 GPT4、Llama2 等大模型 AI 对话，支持 Stable Diffusion XL 绘画，支持图片压缩、图片元素消除等图像处理\n* :x: [AIGC工具导航](https://nav.aiwave.cc/)：海量 AI 工具，总有一款是你需要的\n* :x: [AI抠图](https://cutout.aiwave.cc/)：只需上传图片，无需其他操作即可自动去除图片背景\n\n### 2023年10月1号添加\n---\n#### marticztn / FuzzyEra Softworks LLC (浙江金华)\n* :white_check_mark: [简约木鱼 (iOS)](https://apps.apple.com/cn/app/id6445845846)：最简单好用不卡顿的敲木鱼 App\n* :white_check_mark: [简约木鱼 (Android - Google Play)](https://play.google.com/store/apps/details?id=com.marticztn.woodenfish)：最简单好用不卡顿的敲木鱼 App\n\n### 2023年9月29号添加\n---\n#### 简具科技(杭州) -  [官网](http://jianju.3ddysj.com/)\n* :x: [简具 QQ 空间相册导出工具](http://jianju.3ddysj.com/qqkongjian.html)：一键自动下载导出QQ空间相册所有图片\n\n### 2023年9月25号添加\n---\n#### xerduo(重庆)\n* :x: [iChat](https://ichatt.cn)：智能AI助手，支持 ChatGPT 3.5、4.0、文心一言，内置90+行业AI角色，多国语言朗读，有网页版，App、Windows应用 - [更多介绍](https://ichatt.cn)\n* :x: [tetris](https://tetris.duqing.ink)：俄罗斯方块游戏，支持 AI，适配 H5 - [更多介绍](https://tetris.duqing.ink)\n\n### 2023年9月18号添加\n---\n#### 风逝 \n* :white_check_mark: [Tabs-Fast-Easy](https://chrome.google.com/webstore/detail/tabs-fast-easy/falglioamaogaliloglbhkannkjlpjil)：更轻松 快捷管理标签页，及快速释放内存 - [更多介绍](https://meta.appinn.net/t/topic/46029)\n\n### 2023年9月11号添加\n---\n#### Lost(深圳) - [Github](https://github.com/wangpinggang)\n* :white_check_mark: [MyNotes Keeper](https://www.mynoteskeeper.com)：Windows 平台原生大纲笔记软件，强大流畅，提供免费版本 - [更多介绍](https://www.mynoteskeeper.com/features.html)\n\n### 2023年9月5号添加\n---\n#### Leon(武汉) - [博客](https://cl8023.com)\n* :x: [情侣100件事](https://apps.apple.com/app/%E6%83%85%E4%BE%A3100%E4%BB%B6%E4%BA%8B/id6461458836)：不止 100 件浪漫小事，爱情旅程的完美伴侣 - [更多介绍](https://cl8023.com/detailed?id=ycbqfOCLU)\n\n### 2023年9月3号添加\n---\n#### 陈建利 - [博客](https://jianlichen.blog/)\n* :white_check_mark: [DeskWidgets](https://apps.apple.com/us/app/deskwidgets/id6446226257?mt=12)：macOS 桌面组件库\n* :white_check_mark: [Twitter Classic Logo](https://chrome.google.com/webstore/detail/twitter-classic-logo/ldimicjoagopeeflheigbfaoopenobbn)：恢复 Twitter 原来蓝鸟 Logo\n\n### 2023年8月18号添加\n---\n#### 极客学伟(北京) - [Github](https://github.com/qxuewei/), [博客](https://qiuxuewei.com/) ,[Twitter](https://twitter.com/qxuewei/)\n*  :white_check_mark: [AI画图王](https://apps.apple.com/app/id6505048186)：AI文本生成图片，AI绘图插画风格，智能AI图画生成 (iOS/iPad/Mac)\n*  :white_check_mark: [Nap - Break Reminder](https://apps.apple.com/app/id6471501135)：定时提醒,番茄钟,提升工作效率,喝水提醒,避免久坐 (Mac)\n*  :white_check_mark: [Island Widgets - 灵动岛&锁屏小组件](https://apps.apple.com/app/id6464542768)：灵动岛/锁屏小组件，下班倒计时、手机拿起次数、步数、心率、热搜、待办、天气、抢票倒计时等 (iOS)\n*  :white_check_mark: [加一 - 自律打卡](https://apps.apple.com/app/id1477743089)：习惯养成打卡，追踪生活小事，记录日常情绪，计数、统计 (iOS)\n*  :white_check_mark: [学伟扫描 - OCR&PDF扫描打印](https://apps.apple.com/app/id1468603429)：OCR、识别图片文字、翻译、图片转PDF、打印、相册资料整理 (iOS)\n\n### 2023年8月17号添加\n---\n#### 一刀(杭州) - [Github](https://github.com/laosanyuan)\n*  :white_check_mark: [Hamibot遥控器](https://github.com/laosanyuan/HamibotRemoteControl)：手机自动化工具 Hamibot 的三方工具 APP，可编译 iOS 和 Andriod 包。支持远程操控脚本，弥补官方控制端的不足\n*  :white_check_mark: [火浣](https://github.com/laosanyuan/HuoHuan)：微信群爬虫 Windows 客户端工具，用于获取网络中他人公开并且有效的微信群聊二维码图片。提供安装包\n\n### 2023年8月15号添加\n---\n#### JustAIGithub(北京) - [Github](https://github.com/JustAIGithub/AI-Code-Convert)\n* :white_check_mark: [AICodeConvert](https://aicodeconvert.com/)：将自然语言转代码,将一种代码语言转另一种代码语言实现 - [更多介绍](https://blog.aicodeconvert.com/)\n\n#### limaoyi1(长沙) - [Github](https://github.com/limaoyi1), [博客](http://www.limaoyi.top/)\n* :x: [Genshin-GPT](http://www.limaoyi.top:4400/)：基于 LangChain 和向量知识库模仿原神角色的对话 GPT,让三次元的人可以和游戏中的角色自由的对话 - [更多介绍](https://github.com/limaoyi1/Genshin-GPT)\n\n### 2023年8月4号添加\n---\n#### 叫我强哥(杭州) - [Github](https://github.com/zhangya4548), [博客](http://jianju.3ddysj.com)\n* :white_check_mark: [不懂药问](https://www.v2ex.com/t/962506)：查询医保用药的微信小程序\n\n### 2023年8月1号添加\n---\n#### Dreamer365 - [Github](https://github.com/Dreamer365/topspeed-image-compressor), [Gitee](https://gitee.com/dreamer365/topspeed-image-compressor)\n* :white_check_mark: [极速图片压缩器](https://github.com/Dreamer365/topspeed-image-compressor)：速度极快的图片压缩软件\n\n### 2023年7月29号添加\n---\n#### booboosui(北京) - [Github](https://github.com/kuafuai/DevOpsGPT/blob/master/docs/README_CN.md)\n* :x: [DevOpsGPT](http://www.kuafuai.net/devopsgpt)：面向任何人，AI 将需求转化为可工作软件 - [更多介绍](https://github.com/kuafuai/DevOpsGPT/blob/master/docs/README_CN.md)\n\n#### Thawne - [Github](https://github.com/aiguoli)\n* 🕗 [SimpleList](https://github.com/aiguoli/SimpleList)：管理 OneDrive 文件 (基于 WinUI3 开发的桌面端 App)\n\n### 2023年7月26号添加\n---\n#### discountry - [Github](https://github.com/discountry), [博客](https://yubolun.com/)\n* :white_check_mark: [SigniFi](https://www.signifi.life/)：AI 塔罗牌占卜，DApp\n\n#### heygsc - [Github](https://github.com/heygsc)\n* :white_check_mark: [单词之风](https://word-wind.pages.dev/)：简洁的背单词页面，词库丰富，有标记列表等功能\n\n### 2023年7月23号添加\n---\n#### 五块一 - [Github](https://github.com/WuKaiYi/AI_painter), [Bilibili](https://space.bilibili.com/3430120)\n* :white_check_mark: [机画师](https://apps.apple.com/us/app/id1644645946)：基于 Stable Diffusion 的 AI 绘图 App\n\n#### hoochanlon - [Github](https://github.com/hoochanlon), [博客](https://hoochanlon.github.io)\n* :white_check_mark: [Nigate](https://github.com/hoochanlon/Free-NTFS-For-Mac)：支持苹果芯片的 Free NTFS for Mac 小工具软件\n\n#### Sunrisepeak - [Github](https://github.com/Sunrisepeak), [Bilibili](https://space.bilibili.com/65858958), [知乎](https://www.zhihu.com/people/SPeakShen)\n* :white_check_mark: [KHistory](https://github.com/Sunrisepeak/KHistory)：优雅&跨平台的 键盘/🎮手柄按键 检测及历史记录显示工具, 无需安装单可执行文件 (约900kb大小) 即点即用\n\n\n### 2023年7月22号添加\n---\n#### Tw93 - [Github](https://github.com/tw93), [Twitter](https://twitter.com/HiTw93), [博客](https://tw93.fun)\n* :white_check_mark: [妙言](https://github.com/tw93/MiaoYan)：轻灵的 Markdown 笔记本伴你写出妙言\n\n### 2023年7月21号添加\n---\n#### Tan(佛山) - [Github](https://github.com/tans)\n* :white_check_mark: [DenoPark](https://denopark.com)：打字 RPG 游戏，可以背单词，记快捷键\n\n### 2023年7月17号添加\n---\n#### 张土福(上海) - [Github](https://github.com/tufook), [博客](https://tufook.com/)\n* :white_check_mark: [Foresee](https://apps.apple.com/cn/app/foresee-predictions-tracker/id6447700092)：iOS App，跟踪你的预测以提升你的判断力\n\n### 2023年7月12号添加\n---\n#### GGBond - [个人网站](https://boxopened.github.io/)\n* :white_check_mark: [雨巷](https://apps.apple.com/us/app/%E9%9B%A8%E5%B7%B7/id1619940076)：为程序员打造的专属白噪音工具，精选钢琴曲混合自然音帮助保持专注，提高效率\n* :white_check_mark: [文曲星记单词](https://apps.apple.com/us/app/%E6%96%87%E6%9B%B2%E6%98%9F%E8%AE%B0%E5%8D%95%E8%AF%8D/id1618265393)：灵感来源于古老的文曲星电子辞典，经典复古的单词记忆软件\n* :x: [预算笔记](https://apps.apple.com/us/app/budget-note/id1623043447)：有预算功能的记事簿，免注册，数据本地存储，同时支持 Web 多端访问\n\n### 2023年7月5号添加\n---\n#### Patrick - [个人网站](http://patzhong.com)\n* :white_check_mark: [MoodUp](https://apps.apple.com/us/app/moodup-breeze-mental-health/id6450100126)：帮助你记录心情和管理情绪的日记APP\n\n#### River(深圳) - [Github](https://github.com/hepengwei/visualization-collection)\n* :white_check_mark: [visualization-collection](http://hepengwei.cn)：专注于前端视觉效果的集合应用，包含CSS动效、Canvas动画、人工智能应用等上百个案例\n\n### 2023年6月29号添加\n---\n#### Airsaid（武汉） - [个人网站](http://airsaid.com/)\n* :white_check_mark: [ChatBoost](https://play.google.com/store/apps/details?id=studio.muggle.chatboost)：原生 Android ChatGPT 客户端\n* :white_check_mark: [数字华容道](https://play.google.com/store/apps/details?id=com.mugglegame.numpuzzle)：经典数字拼图智力小游戏\n* :x: [点点](https://play.google.com/store/apps/details?id=com.mugglegame.dotdot)：连点成线休闲小游戏\n\n### 2023年6月19号添加\n---\n#### 甘小蔗（重庆） - [个人网站](https://gxzv.com/?chinese-independent-developer)\n* :white_check_mark: [GPEG 九型人格测试系统](https://gxzv.com/know-yourself/enneagram/)：九型人格专业测试与分析 - [更多介绍](https://gxzv.com/know-yourself/enneagram/all-types/)\n* :x: [ChiauFarm](https://www.chiau.net/farm/)：Chia Token 跨平台可视化多功能自动耕种客户端\n* :x: [MetorChat](https://chat.metauit.com/)：对话基于 NLP 和 ML 的大型语言模型\n* :clock8: [工业上位机](https://gxzv.com/blog/review-2022-12/#%E5%A4%A7%E5%89%8D%E7%AB%AF)：一些基于大前端开发的上位机应用\n* :x: [MCAdmin](https://www.mcadmin.cn/)：面向 Minecraft 内容提供者的垂直社区\n\n### 2023年6月8号添加\n---\n#### Jinke Du（上海）- [个人网站](https://kinnoukabokudo.com/)\n* :white_check_mark: [行动日](https://apps.apple.com/app/id6444159859)：待办/不办清单应用。\n* :white_check_mark: [好天气](https://apps.apple.com/app/id1658473170)：查看现在、未来与过去的天气。\n* :white_check_mark: [生或死](https://apps.apple.com/app/id1498862402)：康威生命游戏（Conway’s Game of Life）。\n* :white_check_mark: [白边框](https://apps.apple.com/app/id1659350166)：为照片添加边框。\n* :white_check_mark: [计数器](https://apps.apple.com/app/id1533504378)：记录一切计数。\n* :white_check_mark: [卅六问](https://apps.apple.com/app/id1541439969)：让陌生人迅速相爱的 36 个问题。\n* :white_check_mark: [猜文字](https://apps.apple.com/app/id1606194420)：中文 Wordle，在 6 次机会中，通过笔画、笔顺猜出正确文字。\n* :white_check_mark: [伊摩基](https://apps.apple.com/app/id1619616706)：用 Emoji 记录生活日记。\n* :white_check_mark: [相机印](https://apps.apple.com/app/id6447237830)：为照片添加参数水印边框。\n\n### 2023年6月4号添加\n---\n#### Grant \n* :white_check_mark: [软猫下载](https://softmall.net/)：无插件软件/APP下载中心\n\n### 2023年5月28号添加\n---\n#### Abenx\n* :white_check_mark: [开心果节拍器](https://apps.apple.com/cn/app/id1538268059)： 首款支持Apple Watch的节拍器。学琴，跑步配速的好帮手。\n* :white_check_mark: [好色相机](https://apps.apple.com/cn/app/id1151401197)： 从照片中提取关键色彩值，为你的设计提供色彩灵感。\n* :white_check_mark: [IconShop](https://apps.apple.com/cn/app/id6443592678)：快速生成Xcode直接可以使用的icon格式，支持云存储。\n\n### 2023年5月27号添加\n---\n#### Sunner(北京) - [Github](https://github.com/sunner)\n* :white_check_mark: [ChatALL](http://chatall.ai)：同时和 10+ 个大模型（ChatGPT、Bing Chat、文心一言、讯飞星火等）对话，找到最佳回答\n\n\n### 2023年5月24号添加\n---\n#### 糖伴西红柿\n* :white_check_mark: [海报图生成 - Foolstack](https://foolstack.net)： 使用 API 将网页/HTML 渲染成高质量图片\n\n### 2023年5月18号添加\n---\n#### IndieKKY(浙江) - [Github](https://github.com/IndieKKY)\n* :white_check_mark: [哔哩哔哩字幕列表](https://github.com/IndieKKY/bilibili-subtitle)：字幕显示,下载,总结,翻译\n\n### 2023年5月13号添加\n---\n#### 飞刀(北京)\n* :white_check_mark: [五彩插件](https://www.dotalk.cn/product/wucai): 网页划线高亮批注笔记工具，支持同步到 Obsidian - [更多介绍](https://www.yuque.com/makediff/wucai)\n\n### 2023年5月9号添加\n---\n#### mattewwung(大连)\n* :white_check_mark: [口袋四级](https://apps.apple.com/cn/app/id1673721668)：四级必背高频单词 - [更多介绍](https://apps.apple.com/cn/app/id1673721668)\n\n### 2023年5月8号添加\n---\n### aizuzi - [Github](https://github.com/aizuzi) \n* :white_check_mark: [减肥小助手](https://apps.apple.com/cn/app/id1583776291)：减肥期间的小工具，帮助记录体重和卡路里 - [更多介绍](https://ohee.cn/static/download/index.html)\n\n### 2023年4月30号添加\n---\n#### cxxsucks(徐州)\n* :x: [SearchEverywhere](https://github.com/cxxsucks/SearchEverywhere/releases/tag/v0.3.1)：Linux, macOS 与 Windows 上的文件检索工具，含有`find`以及`Everything`的各种功能，外加内容查找、上下层目录查找等 - [更多介绍](https://github.com/cxxsucks/SearchEverywhere)\n\n### 2023年4月24号添加\n---\n#### weekend-project-space - [Github](https://github.com/undb-xyz/undb)\n* :x: [aihub](https://aihub.bitmagic.space/)：收集 AI 相关应用和提示与源码\n\n### 2023年4月14号添加\n---\n#### nichenqin(上海) - [Github](https://github.com/undb-xyz/undb)\n* :x: [undb](https://www.undb.xyz/)：轻量自部署的无代码软件\n\n### 2023年4月13号添加\n---\n#### HyJames(广州)\n* :x: [学习杂货铺](https://xuexizahuopu.fun/)：集成待办、进度、倒数日、社区等功能网站（有小程序版）\n\n### 2023年4月12号添加\n---\n#### mark420524 - [GitHub](https://github.com/mark420524)\n* :white_check_mark: [早晚猜](https://github.com/mark420524/guess): 猜成语微信小程序，看图猜成语\n\n#### Gomi(成都) - [GitHub](https://github.com/gxy5202) [主页](https://gomi.site)\n* :white_check_mark: [Video Roll](https://github.com/VideoRoll/VideoRoll): 帮助你旋转、缩放、移动、调整比例、镜像翻转、调节音调、专注和滤镜任意网页中 HTML5 视频的浏览器插件（Chrome/Edge/Firefox）- [更多介绍](https://github.com/VideoRoll/VideoRoll/blob/main/README-zh_CN.md)\n\n### 2023年4月4号添加\n---\n#### 静彦齐(吉林)\n* :white_check_mark: [WriteDeck](https://apps.apple.com/cn/app/writedeck/id6446620450)：写作训练 App，利用随机生成的提示词卡片进行故事创作。\n\n### 2023年3月30号添加\n---\n#### weijarz(杭州) - [主页](https://www.oxyry.com/)\n* :white_check_mark: [QiReader](https://www.qireader.com)：全平台网页 RSS 阅读器，同时支持推送文章到 Kindle。\n\n### 2023年3月8号添加\n---\n#### moonrailgun(上海) - [Github](https://github.com/moonrailgun), [博客](http://moonrailgun.com/)\n* :white_check_mark: [Tailchat](https://github.com/msgbyte/tailchat)：您自己工作区中的下一代 noIM 应用程序 - [更多介绍](https://tailchat.msgbyte.com/)\n\n### 2023年3月4号添加\n---\n#### Kuingsmile(杭州) - [Github](https://github.com/Kuingsmile), [博客](https://www.horosama.com)\n* :white_check_mark: [PicList](https://github.com/Kuingsmile/PicList)：云存储/图床管理和图片上传工具，基于 PicGo 项目的深度二次开发 - [更多介绍](https://piclist.cn)\n\n### 2023年2月24号添加\n---\n#### Lessimore - [官网](https://supercoder.lessimore.cn/)\n* :white_check_mark: [Super Coder](https://apps.apple.com/cn/app/super-coder-%E5%89%AA%E5%88%87%E6%9D%BF-%E6%9C%AC%E5%9C%B0%E5%8C%96-%E4%BB%A3%E7%A0%81%E7%94%9F%E6%88%90%E6%A0%B7%E6%A0%B7%E9%83%BD%E8%A1%8C/id1663425686?mt=12)：剪切板管理、Swift 代码生成、Xcode 本地化样样都行 - [更多介绍](https://supercoder.lessimore.cn/)\n\n### 2023年2月22号添加\n---\n#### Sven（昆明）- [Github](https://github.com/shensven)\n* :white_check_mark: [Morphling](https://github.com/shensven/Morphling): 将 Hex、RGB 或者 HSL 色值转换为 CSS filter 属性的 macOS 桌面工具。\n\n### 2023年2月19号添加\n---\n#### tangshimin（深圳）- [Github](https://github.com/tangshimin)\n* :white_check_mark: [幕境](https://github.com/tangshimin/MuJing): 沉浸式学英语,使用自己感兴趣的电影、美剧或文档，生成词库（单词本）。在记忆单词时，可以练习拼写并观看相关的视频片段，以便更好的理解和记忆单词。播放电影时，以弹幕的形式复习词库中的单词，使得单词记忆不再是一件乏味的事。 \n\n\n### 2023年2月18号添加\n---\n#### Darkce(北京) - [Github](https://github.com/luoxuhai)\n* :white_check_mark: [夜视仪 App](https://github.com/luoxuhai/NightVision)：可在完全无光环境下扫描和检测距离的 iOS App (开源)，使用了 iPhone 和 iPad 后置的激光雷达扫描仪。\n\n### 2023年2月11号添加\n\n---\n\n#### createitv(武汉) - [博客](https://www.panghuang.tech)\n\n* :white_check_mark: [每日工具箱随身助手](https://typora-1300715298.cos.ap-shanghai.myqcloud.com//blog扫码_搜索联合传播样式-标准色版.png)：集成去水印、电子木鱼、房贷计算、小孩取名、壁纸下载等多种功能的小程序\n\n\n### 2023年2月8号添加\n---\n#### miniits(厦门) - [Github](https://github.com/hy4101)\n* :white_check_mark: [BdTab新标签页扩展](http://www.bdtab.cn)：浏览器扩展程序，高度自定义，组件化，跨平台等功能的工具\n\n### 2023年1月27号添加\n---\n#### syt - [Github](https://github.com/syt2)\n* :white_check_mark: [Tracepad](https://apps.apple.com/app/id1658454999)：将 iPhone/iPad 变为控制 Mac 的 Trackpad，支持 Trackpad 的绝大部分手势 - [更多介绍](https://www.tracepad.site/tracepad/)\n\n### 2023年1月25号添加\n---\n#### MrZenW - [Github](https://github.com/MrZenW)\n* :white_check_mark: [G-侠客 | BPC.js](https://g-xiake.com)：可以生成能够给电波表对时的电磁波的 JS 库，并且用此搭建了一个免费帮大家对时的网站，它可以帮助拥有电波表（如卡西欧）的朋友在没有电波的地方对时 - [更多介绍](https://github.com/MrZenW/BPC.js)\n\n#### lencx - [Github](https://github.com/lencx)\n* :white_check_mark: [ChatGPT](https://github.com/lencx/ChatGPT)：ChatGPT 跨平台桌面应用，支持 Mac、Windows 和 Linux。主要功能有斜杠指令，系统托盘，快捷键，系统菜单，聊天记录导出（PNG，PDF，Markdown），加载任意网站 URL 作为应用程序窗口（URL 桌面化，可以借助系统 API 做更多有趣的事情）- [更多介绍](https://github.com/lencx/ChatGPT/blob/main/README.md)\n\n### 2023年1月24号添加\n---\n#### shartoo - [Github](https://github.com/shartoo)\n* :white_check_mark: [webhub123](https://www.webhub123.com/#/home/more)：管理和分享优质网站收藏的网站，不仅限于博客，希望包含全网各个领域 - [更多介绍](https://github.com/1c7/chinese-independent-developer/issues/160#issuecomment-1400422591)\n\n### 2023年1月22号添加\n---\n#### Sworld(温州) - [Github](https://github.com/mcthesw), [博客](http://blog.sworld.club/)\n* :white_check_mark: [游戏存档管理器](https://github.com/mcthesw/game-save-manager)：简单、美观的游戏存档管理软件 - [更多介绍](https://www.bilibili.com/read/cv15774558)\n\n### 2023年1月14号添加\n---\n#### GeorgeZou - [Github](https://github.com/georgezouq)\n* :white_check_mark: [星搭 MtBird](https://github.com/staringos/mtbird) - 💻 小程序、H5 网站 无/低代码平台，无需代码，拖拽操作快速生成页面应用，数据可视化接入，定制业务自由拓展.\n\n\n### 2023年1月13号添加\n---\n#### B3log(云南) - [Github](https://github.com/siyuan-note)\n* :white_check_mark: [SiYuan](https://b3log.org/siyuan)：思源笔记是本地优先的个人知识管理系统， 支持细粒度块级引用和 Markdown 所见即所得 - [更多介绍](https://b3log.org/siyuan)\n\n#### 程序猿韩三皮(北京) - [Github](https://github.com/hzr1140521792)\n* :x: [make-money](https://make-money.hanzhengrong.cn)：好用的 PC 端理财工具系统（基金） - [更多介绍](https://github.com/hzr1140521792/make-money-fund)\n\n#### dsy4567 - [Github](https://github.com/dsy4567)\n* :white_check_mark: [防沉迷终结者](https://fcmsb250.github.io/) - 干掉防沉迷, 帮助您实现游戏自由的浏览器扩展\n\n#### meetqy(成都) - [Github](https://github.com/meetqy/eagleuse)\n* :white_check_mark: [eagleuse](https://rao.pics) - 把 Eagle App (管理 UI 素材/图片的桌面应用) 打造成本地后台管理系统，快速构建 WEB 图片站。\n\n### 2023年1月12号添加\n---\n#### weekendproject - [Github](https://github.com/weekend-project-space), [博客](http://weekendproject.space/)\n* :white_check_mark: [webfollow](https://webfollow.cc/)：RSS 阅读器，md 风格，支持个人自定义内容顺序，pwa 可直接添加到桌面，响应式，多端运行\n\n#### moonrailgun(上海) - [Github](https://github.com/moonrailgun), [博客](http://moonrailgun.com/)\n* :white_check_mark: [codeck](https://codeck.moonrailgun.com/): 基于 JS 的可视化蓝图编程引擎，让不懂得编程的用户也能通过可视化的方式进行编程，只要掌握最基本的逻辑即可。同时支持插件形式编写适用于不同场景的代码块，产品灵感来自于`unreal`的蓝图编程引擎与`google`的`blockly`。\n\n### 2023年1月9号添加\n---\n#### shenpvip - [Github](https://github.com/shenpvip)\n* :white_check_mark: [羽毛球助手](https://s3.bmp.ovh/imgs/2023/01/09/0ba2aa198f7e8a33.jpg)：一键参与、发起羽毛球活动 - [更多介绍](https://github.com/shenpvip)\n\n#### Jokerlsss(福州) - [Github](https://github.com/fjykTec/ModernWMS)\n* :white_check_mark: [ModernWMS](https://wmsonline.ikeyly.com/#/login)：精简而充满现代化的 **仓库管理系统**，支持快速收发货、库存、仓内作业等功能。开箱即用、完全开源、十分钟即可上手！（标题链接可直达体验环境）\n\n#### yiuman(广州) - [Github](https://github.com/Yiuman),\n* :x: [docod](http://42.192.95.146:3000)：智能文档比对-支持 Word、PDF 交叉比对、双屏展示、效果一目了然\n一键导出差异报告、word 修订文档\n\n### 2023年1月8号添加\n---\n#### Arxiv Search - [Github](https://github.com/goodnlp)\n* :white_check_mark: [Arxiv Search](https://www.arxiv.dev)： 追踪各个领域最新 Arxiv 论文的搜索引擎和浏览网站。目前包含两大功能：(1) 一个网站, 包含各个领域最新文章的检索，和任意时间段的研究趋势的分析；包含搜索功能，分领域的论文浏览功能，还有更多数据分析的功能正在开发中。(2) 基于微信搜索获取最新 arxiv 论文推送 - [更多介绍](https://github.com/goodnlp/all-you-need-is-arxiv-search)\n\n### 2023年1月7号添加\n---\n#### 游雨的鱼cc(杭州) - [博客](https://vipvan.cc/archives/%E8%87%AA%E5%8A%A8%E5%8C%96%E5%8A%9E%E5%85%AC%E8%BD%AF%E4%BB%B6#toc-head-0)\n* :x: [Workflow](https://vipvan.cc/upload/Workflow.zip)：实现自动化 Excel 操作的中文框架 - [更多介绍](https://space.bilibili.com/14481495/)\n\n### 2023年1月3号添加\n---\n#### zcf0508(上海) - [Github](https://github.com/zcf0508), [博客](https://huali.cafe/)\n* :white_check_mark: [AutoCut Client](https://github.com/zcf0508/autocut-client)：为 [AutoCut](https://github.com/mli/autocut) 提供一个开箱即用的客户端 - [更多介绍](https://github.com/zcf0508/autocut-client/blob/master/README_zh.md)\n\n### 2023年1月1号添加\n---\n#### FanChenIO(北京)\n* :white_check_mark: [Dawn Launcher](https://dawnlauncher.com/)：Dawn Launcher Windows 快捷启动工具，解决桌面杂乱无章的问题，让您的桌面干净整洁。\n\n### 2022年12月30号添加\n---\n#### Loui(长沙)\n* :white_check_mark: [PPT批量处理百宝箱](http://www.batchtoolset.com/)：高效强悍的PPT文件批量处理工具，致力于为使用者提供可靠、安全、高效、简洁、省时省力的 PPT 文件批量处理解决方案\n\n### 2022年12月13号添加\n---\n#### xiaoluoboding(大理) - [Github](https://github.com/xiaoluoboding)\n* :x: [One Tab Group](https://onetab.group)：集多功能于一身的代替 `OneTab`/`Session Buddy` 的下一代标签页/标签组管理器, 帮助你有效地管理、组织您的浏览器标签页，支持云同步以及同步到 Notion 等功能。\n\n### 2022年12月12号添加\n---\n#### Mekal(Wuhan) - [Github](https://github.com/mekalz)\n* :white_check_mark: [iOS App：怪兽音符 - 五线谱识谱练习卡](https://apps.apple.com/cn/app/%E6%80%AA%E5%85%BD%E9%9F%B3%E7%AC%A6-%E4%BA%94%E7%BA%BF%E8%B0%B1%E8%AF%86%E8%B0%B1%E7%BB%83%E4%B9%A0%E5%8D%A1/id1641497474)：可以连接电钢琴的五线谱识谱训练工具，适用于钢琴初学者训练五线谱的读谱反应速度\n* :white_check_mark: [iOS App：可沐心语 - 通过 Emoji 随时记录心情，阅读精美治愈与激励好句子](https://apps.apple.com/cn/app/%E5%8F%AF%E6%B2%90%E5%BF%83%E6%83%85%E8%AF%AD%E5%BD%95/id6444787701)：每日语录与心情记录小工具。\n精美的图片配合绝伦的语录，能够不经意间治愈你内心的创伤，亦或为你注入能量；\n你还可以使用一个 eMoji 表情来代表并记录你此刻的心情，之后更是可以根据心情指数曲线来跟踪回顾自己一段时间以来的心情变化情况，不断调整自己的情绪，让自己每天都能够轻松摆脱负面情绪，让自己每天都可以能量满满的生活和工作。\n\n### 2022年12月8号添加\n---\n#### onlymash - [GitHub](https://github.com/onlymash)\n* :x: [materixiv](https://play.google.com/store/apps/details?id=onlymash.materixiv)：Pixiv app - [更多介绍](https://github.com/onlymash/materixiv)\n\n### 2022年12月5号添加\n---\n#### ch3ng(成都) - [官网](https://www.ohmymd.app)\n* :x: [Oh Mymd](https://www.ohmymd.app)：支持本地与云同步的 Markdown 编辑器.\n\n### 2022年12月3号添加\n---\n#### kongkongye(台州) - [Github](https://github.com/kongkongye)\n* :x: [sssbar](https://bar.ssstab.com)：浏览器快捷搜索框扩展,在线工具网页搜索.\n\n### 2022年12月2号添加\n---\n#### Vio(深圳) - [Github](https://github.com/vioao),[博客](https://blog.vioao.site/)\n* :x: [智能水印工具箱](https://github.com/vioao)：图片/短视频处理的 AI 小程序。能够一键去水印、画质增强、背景移除、图集提取。\n* :x: [临时邮箱小助手](https://github.com/vioao)：提供临时、安全、匿名、免费的一次性电子邮箱的小程序。支持自定义邮箱地址和附件下载。\n\n### 2022年11月30号添加\n---\n#### Patrick(佛山) - [Github](https://github.com/yuandongzhong), [博客](https://patzhong.com/),  [Twitter](https://twitter.com/pat_zhong),\n* :x: [UnderThink](https://underthink.cc/)：危险的头脑风暴工具 - [更多介绍](https://www.v2ex.com/t/899011)\n\n### 2022年11月16号添加\n---\n#### kongkongye(台州) - [Github](https://github.com/kongkongye)\n* :x: [ssstab](https://ssstab.com)：ssstab新标签页,你的网络书签管理工具.\n\n### 2022年11月12号添加\n---\n#### Kuingsmile(杭州) - [Github](https://github.com/Kuingsmile), [博客](https://www.horosama.com)\n* :clock8: [PicHoro](https://github.com/Kuingsmile/PicHoro)：用于上传图片和管理云存储/图床平台的安卓 APP，与电脑端的 PicGo 配置互通，正在准备上架 - [更多介绍](https://pichoro.horosama.com)\n\n### 2022年11月8号添加\n---\n#### Zeffon(广州) - [Github](https://github.com/zeffon/english)\n* :white_check_mark: [IEnglish](https://english.zeffon.cn/)：英语口语练习网站，包括音标、语音标记、语音技巧等。\n\n### 2022年10月28号添加\n---\n#### huangjx(广州) - [Github](https://github.com/zhandouxiaojiji), [博客](https://blog.coding1024.com/)\n* :x: [Tesla Light Show Creator](https://tesla.coding1024.com/)：特斯拉灯光秀制作工具，导入背景音乐一键生成炫酷的自定义灯光秀。\n\n#### Likun(杭州) - [Github](https://github.com/Likunone), [博客](https://onelk.cn)\n* :white_check_mark: [爱吖去水印](https://user-images.githubusercontent.com/15193414/198528969-868cd864-f462-46e8-91ef-e90fd8201bbb.png)：免费去水印、抖音去水印、快手去水印，一键保存无水印视频到相册。\n\n### 2022年10月25号添加\n---\n#### 染河(杭州) - [Github](https://github.com/hewenguang)\n* :white_check_mark: [Circle 阅读助手](http://circlereader.com/)：提供沉浸式阅读的扩展，拥有强大智能的识别和排版能力，让你爱上在网页上阅读\n\n### 2022年10月12号添加\n---\n#### ExistOrlive - [Github](https://github.com/ExistOrLive), [博客](https://gitbook.existorlive.cn/)\n* :white_check_mark: [ZLGithubClient](https://apps.apple.com/app/gorillas/id1498787032)：基于 Github 官方 API 开发的 Github iOS 客户端 - [更多介绍](https://github.com/ExistOrLive/GithubClient)\n\n### 2022年10月11号添加\n---\n#### Evancohe(惠州) - [Github](https://github.com/evancohe), [Twitter](https://twitter.com/evancohe)\n* :white_check_mark: [Kake日记](https://apps.apple.com/us/app/kake-journal-password-diary/id1515415906)：极简风格的日记 App, 多设备适配, 曾上 Apple 推荐。\n* :white_check_mark: [Je Focus](https://apps.apple.com/sg/app/je-focus/id1486865992)：极简风格的专注 App, 用重力感应检测用户拿手机并暴力提醒.\n\n### 2022年8月24号添加\n---\n#### Denny Wang(合肥) - [GitHub](https://github.com/eggsblue),[Twitter](https://twitter.com/DennyWang99)\n* :white_check_mark: [Wins](https://wins.cool) - 为 Mac 带来系统级的分屏功能，主打悬浮分屏、系统级集成、流畅动画、低功耗等特点。\n\n\n### 2022年7月28号添加\n---\n#### yellownight - [博客](https://www.caiqilian.top)\n* :white_check_mark: [智能翻译器](https://github.com/yellownight) - 微信翻译小程序，提供多语言文本翻译，图片翻译，语音翻译。支持英语、日语、韩语、俄语、德语、法语、泰语、葡萄牙语、西班牙语、阿拉伯语等。\n\n### 2022年7月26号添加\n---\n#### mark420524 - [GitHub](https://github.com/mark420524)\n* :white_check_mark: [早晚答小程序](https://github.com/mark420524) - 小程序进行答题，增加了汉字查询、成语查询、英汉词典等功能\n\n### 2022年7月14号添加\n---\n#### sorakylin(广州) - [Github](https://github.com/sorakylin), [博客](https://www.skypyb.com/2022/07/rizhi/suibi/1996/)\n* :x: [线圈](https://xquan.net)：做出来的东西没人看，没人用，没人玩，没地方展示，怎么办？看过来！这是让创作者记录项目进展，分享进度成果，展示最终成品，并且可以得到来自用户（或粉丝）以及其他创作者们的反馈交流的创意平台~ -  [更多介绍](https://xquan.net/help)\n\n### 2022年6月17号添加\n---\n#### 秋风（北京）- [Github](https://github.com/hua1995116), [Jike](https://okjk.co/CEcbno)\n* :white_check_mark: [木及简历](https://www.mujicv.com): 基于 Markdown 编写的简历工具，包含多个可插拔式插件。专注简历内容，告别繁琐排版\n\n### 2022年6月13号添加\n---\n#### yangxuechen(成都) - [Github](https://github.com/yangxuechen/resume_vue3_ts)\n* :white_check_mark: [大象简历](https://yangxuechen.github.io/resume_vue3_ts/) :  开源的简历模板工具，支持在线编辑、导出 PDF 文件\n\n\n### 2022年6月6号添加\n---\n#### 自力6XStudio（深圳） - [Github](https://github.com/hzlzh), [Twitter](https://x.com/hzlzh)\n* :x: [锁屏启动 (iOS)](https://LockLauncher.app)：丰富小组件、灵动岛网速/天气/步数等\n* :white_check_mark: [MenubarX (macOS)](https://MenubarX.app)：强大的 Mac 菜单栏浏览器，把网页添加到菜单栏上，像原生 App 一样即开即用\n* :white_check_mark: [DockX (macOS)](https://dockx.app/)：在程序坞显示任意状态，如：网速、CPU、时钟等\n* :white_check_mark: [钢琴小组件 (iOS)](https://6x.studio/piano-widget/)：无需启动，随时弹奏\n* :white_check_mark: [桌面计算器 (iOS)](https://desktop-calculator.com/)：超强的桌面计算器，无需打开App，随时随地计算\n* :white_check_mark: [StickerX (iOS)](https://6x.studio/stickerx/)：AI 一键抠图，表情包创作工具\n* :white_check_mark: [eyeye (iOS)](https://eyeye.app/)：运用 AR 眼球追踪技术帮助你轻松锻炼视力\n* :white_check_mark: [鸭梨海拔 (iOS)](https://apps.apple.com/cn/app/id6738301793)：精美海拔计，旅行海拔打卡必备\n* :white_check_mark: [念念不忘 (iOS)](https://buwang.app/)：简单粗暴的 iOS 提醒小组件\n* :white_check_mark: [红点杀手 (微信小游戏)](https://hzlzh.app/i/qr/redkiller.jpg)：创意弹幕躲避游戏\n* :white_check_mark: [有幻觉 (微信小游戏)](https://hzlzh.app/i/qr/youhuanjue.jpg)：创意视觉错觉游戏\n* :white_check_mark: [WordleX (微信小程序)](https://hzlzh.app/i/qr/wordlex.jpg)：Wordle 游戏的练习工具\n* :white_check_mark: [App Store 全部作品](https://itunes.apple.com/cn/developer/id888749139)\n\n### 2022年6月5号添加\n---\n#### Runjuu（上海） - [Github](https://github.com/Runjuu), [Twitter](https://twitter.com/runjuuu)\n* :white_check_mark: [Input Source Pro](https://inputsource.pro)：优化 macOS 输入法使用体验；根据应用或网站自动切换输入法，自动展示当前输入法。\n* :x: [SongLink](https://apps.apple.com/cn/app/songlink/id1341416046)：多平台音乐搜索工具。\n\n### 2022年6月4号添加\n---\n#### Carson（广州） - [Github](https://github.com/CarsonLam)\n* :white_check_mark: [Quest新标签页](https://support.qq.com/products/308410/blog/744528)：【聚合搜索】新标签页效率插件。\n\n\n### 2022年5月31号添加\n---\n#### 酱咸(广州) - [Github](https://github.com/Maxbee)\n* :white_check_mark: [金橘记账](https://apps.apple.com/cn/app/%E9%87%91%E6%A2%A8-%E4%B8%AA%E4%BA%BA%E8%B5%84%E4%BA%A7%E8%AE%B0%E8%B4%A6%E5%8A%A9%E6%89%8B/id1551523441)：多人一起记账 股票基金自动记账的记账 App - [更多介绍](https://app.xgmm.me:3002/md_h5/front)\n\n### 2022年5月28号添加\n---\n#### 沈浪熊猫儿（杭州） - [Github](https://github.com/darcy-shen), [Gitee](https://gitee.com/darcyshen)\n* :white_check_mark: [墨干编辑器](https://gitee.com/XmacsLabs/mogan): 致力于让所有人畅快地学习既有的科学与技术，创造全新的科学与技术的结构化编辑器。- [更多介绍](https://www.bilibili.com/video/BV1tU4y1171q)\n\n### 2022年5月19号添加\n---\n#### zhangyw(北京) - [Github](https://github.com/zhangyingwei), [博客](https://blog.zhangyingwei.com)\n* :white_check_mark: [QuickDashboard](https://chrome.google.com/webstore/detail/quickdashboard/dicohhlagpacaelhmodlihaampnapape)：简洁美观的 Chrome 浏览器新标签页扩展 - [更多介绍](https://blog.zhangyingwei.com/posts/2022m5d16h20m22s20/)\n\n### 2022年5月6号添加\n---\n#### dunizb(杭州) - [GitHub](https://github.com/dunizb)，[个人主页](https://mo.run/zhangzhang/)\n* :x: [集美美图](https://apps.apple.com/cn/app/id1592148389)：简单纯粹的美女写真壁纸精选 APP。Android 版已上线小米、华为、百度、酷安、360应用市场 - [更多介绍](https://www.pgyer.com/jmmt)\n\n### 2022年4月18号添加\n---\n#### netbeen(杭州) - [GitHub](https://github.com/netbeen)\n* :white_check_mark: [Wealth Manager](https://wealth-manager.netbeen.top) : 家庭财务管理应用，支持总资产统计/各渠道下钻，公募基金持仓分析/收益率计算/年化收益率计算，保险列表/保险续费提醒，支持多用户共同维护一个账本。致力于让每个家庭对自身的财务状况、投资收益有更加清晰的认知 - [更多介绍](https://github.com/netbeen/wealth-manager-front-end)\n\n### 2022年4月16号添加\n---\n#### snow(北京) - [Github](https://github.com/yangpeng7), [博客](https://jiudian.link/)\n* :white_check_mark: [竹叶日历](https://s3.bmp.ovh/imgs/2022/04/15/8dd0930705a3989a.jpg)：极简的日历微信小程序 - [更多介绍](https://github.com/yangpeng7)\n\n### 2022年3月21号添加\n---\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)\n* :clock8: [Ona Pix](https://github.com/SpaceTimee/Ona-Pix)：Pixiv 直连搜图工具，梦想是成为优秀的 Pixiv 第三方直连客户端\n\n### 2022年02月15号添加\n---\n#### zhshch(北京)\n* :x: [NextSSH | SSH工具，不只是命令终端](https://xzhshch.com/)：具有现代化界面与丰富功能的 SSH 连接管理工具 🔧。\n\n### 2022年02月14号添加\n---\n#### 胡镇华(广州) - [Github](https://github.com/hzh-cocong), [博客](https://cocong.cn)\n* :x: [SaveTabs - Window & Tab Manager](https://www.cocong.cn/savetabs)：支持一键保存和打开所有网页，提高工作和学习效率。\n\n### 2022年02月06号添加\n---\n#### Norton(南京) - [GitHub](https://github.com/jiangdi0924), [bilibili](https://space.bilibili.com/228834724)\n* :white_check_mark: [Castflow](https://apps.apple.com/app/id1572179241)：简单快速的iOS泛用型播客App。\n\n* :white_check_mark: [鲨鱼取图](https://apps.apple.com/app/id1590075896)：N in 1 取图 App，支持多种取图方式，例如：视频取帧，网页长图，文本取图等。\n\n* :white_check_mark: [RSSCube](https://apps.apple.com/app/id1602812291)：全新的 RSS iOS 阅读器，给RSS用户提供一种新的阅读体验。\n\n\n### 2022年1月29号添加\n---\n#### 谢宇恒(深圳) - [主页](https://xieyuheng.com), [Github](https://github.com/xieyuheng)\n* :white_check_mark: [只读链接](https://readonly.link)：文档渲染工具，文字创作者的社区。来自书籍与文章的邀请～\n\n#### 洋子(成都) - [Github](https://github.com/purocean), [博客](https://blog-purocean.vercel.app/)\n* :white_check_mark: [Yank Note](https://github.com/purocean/yn)：面向程序员的 Markdown 本地笔记应用，支持代码片段运行、HTML 小工具、多种图表嵌入、历史版本回溯、插件拓展 - [更多介绍](https://blog-purocean.vercel.app/yank-note-01/)\n\n### 2022年1月10号添加\n---\n#### JRay0108(济南) - [Github](https://github.com/JRay0108)\n* :white_check_mark: [树影取名](https://github.com/JRay0108/shuying)：从诗经楚辞唐诗宋词等中华典籍中取名的微信小程序，也可查找名字出处及测算姓名运势。\n\n\n### 2021年12月8号添加\n---\n#### RyukieSama(广州) - [Github](https://github.com/RyukieSama), [博客](https://ryukiedev.gitbook.io/wiki/)\n* :white_check_mark: [梦见账本](https://apps.apple.com/cn/app/id1498426607)：百变外观，独创智能梦见模式的记账软件\n* :white_check_mark: [扫雷Elic 无尽天梯](https://apps.apple.com/cn/app/id1488204246)：益智小游戏，挑战各国扫雷高手\n* :white_check_mark: [隐私访问记录](https://apps.apple.com/cn/app/id1590992377)：系统性分析隐私访问记录，让隐私小偷无处可藏\n\n### 2021年11月16号添加\n---\n#### Alecyrus - [GitHub](https://github.com/Alecyrus)\n* :x: [Thorn](https://app.thorn.press)：简单的写作应用，无限丝滑的创作体验 - [更多介绍](https://app.thorn.press/tutorial)\n\n### 2021年10月17号添加\n---\n#### lmk123 - [GitHub](https://github.com/lmk123), [博客](https://github.com/lmk123/blog/issues)\n* :white_check_mark: [划词翻译](https://hcfy.app)：跨平台的一站式划词、截图、网页全文、音视频翻译扩展 - [更多介绍](https://hcfy.app/docs/guides/summary/)\n\n### 2021年10月9号添加\n---\n#### nojsja(成都) - [Github](https://github.com/nojsja), [博客](https://nojsja.gitee.io/blogs/)\n* :white_check_mark: [shadowsocks-electron](https://github.com/nojsja/shadowsocks-electron)：Shadowsocks 跨平台客户端(Ubuntu/Mac x64) - [更多介绍](https://nojsja.gitee.io/blogs/2021/10/04/5384287.html/)\n\n### 2021年8月31号添加\n---\n#### Guyskk - [Github](https://github.com/guyskk), [博客](https://blog.guyskk.com/)\n* :white_check_mark: [蚁阅](https://rss.anyant.com/)：让 RSS 更好用，轻松订阅你喜欢的博客和资讯 - [更多介绍](https://github.com/anyant/rssant)\n\n### 2021年7月14号添加\n---\n#### Space Time - [Github](https://github.com/SpaceTimee), [博客](https://blog.spacetimee.xyz/)\n* :white_check_mark: [Vight Note](https://github.com/SpaceTimee/Vight-Note)：一只轻量级的临时文本处理工具\n\n### 2021年6月28号添加\n---\n#### SuperMonster003(北京) - [Github](https://github.com/SuperMonster003/Ant-Forest)\n* :white_check_mark: [Ant-Forest](https://github.com/SuperMonster003/Ant-Forest)：基于 Auto.js 的蚂蚁森林能量自动收取脚本 - [更多介绍](https://github.com/SuperMonster003/Ant-Forest/wiki/%E8%9A%82%E8%9A%81%E6%A3%AE%E6%9E%97-(Ant-Forest))\n\n### 2021年6月17号添加\n---\n#### 珒陶(广州) - [Github](https://github.com/chenjt2001), [博客](http://www.chenjt.com/)\n* :white_check_mark: [MindCanvas](http://www.chenjt.com/mindcanvas)：制作思维导图的 UWP 应用\n\n### 2021年6月16号添加\n---\n#### seth-shi(西安) - [Github](https://github.com/seth-shi), [博客](http://www.shiguopeng.cn/)\n* :x: [有梦记](https://www.youmengji.zone/)：有梦记让你一目了然你的过往。记住那些不愿忘记的梦!\n\n### 2021年6月14号添加\n---\n#### newbe36524(上海) - [Github](https://github.com/newbe36524/Amazing-Favorites)\n* :x: [Amazing-Favorites](https://af.newbe.pro/)：高效管理和搜索浏览器收藏的浏览器扩展。\n\n### 2021年6月11号添加\n---\n#### YJ1211 - [Github](https://github.com/guyijie1211)\n* :x: [MixLive](https://live.yj1211.work)：整合国内多个直播平台内容的网站\n\n### 2021年5月14号添加\n---\n#### 一粒豆子(深圳)\n* :x: [魔豆车主](https://www.yilidouzi.com)：更适合国人使用的特斯拉车主 App，记录特斯拉车辆行程及充电费用。 - [更多介绍](http://www.yilidouzi.com/)\n\n### 2021年4月9号添加\n---\n#### LisenH - [Github](https://github.com/LisenH)\n* :white_check_mark: [网页视频下载](https://m3w.cn/wyspxz)：支持几乎所有网页视频的下载，包括 M3U8\n\n### 2021年4月6号添加\n---\n#### zhangyw(北京) - [Github](https://github.com/zhangyingwei)\n* :x: [RSSFlow](http://rss.zhangyingwei.com)：RSS 阅读器（Web 端），以信息流的方式阅读你的订阅信息。\n\n### 2021年3月30号添加\n---\n#### sheepzh(深圳) - [Github](https://github.com/sheepzh)\n* :white_check_mark: [Make Zero](https://github.com/sheepzh/make-zero)：快捷易用的文本加解密浏览器扩展。支持手动和自动加解密，自定义密码，密文风格切换 - [更多介绍](https://www.bilibili.com/video/BV1x54y1t7MR)\n* :white_check_mark: [网费很贵](https://github.com/sheepzh/timer)：用于统计上网时间的浏览器扩展。多种统计口径，丰富的图表展示，支持数据导出 - [更多介绍](https://www.douban.com/group/topic/213888429/)\n\n### 2021年2月20号添加\n---\n#### secret_C - [Gitee](https://gitee.com/secret_C)\n* :white_check_mark: [secret-performance-desktop](https://gitee.com/SecretOpen/secret-performance-desktop)：让桌面炫酷起来的桌面个性化工具\n\n### 2021年2月14号添加\n---\n#### 西格玛(上海) - [Github](https://github.com/SigmaAdrich)\n* :x: [数字水印](http://www.shuiyin.online/)：肉眼不可见的水印 (严格地说来是肉眼不容易分辨的水印，所以比较难以识别出来并去除，减少破坏图片的完整性)\n\n### 2021年1月5号添加\n---\n#### 阿树(上海) - [Github](https://github.com/zhishu520)\n* :x: [早晨计划](https://apps.apple.com/cn/app/%E6%97%A9%E6%99%A8%E8%AE%A1%E5%88%92/id1542908683)：帮你早起一小时，规划生活，达成目标的app\n\n### 2021年1月4号添加\n---\n#### zhengmingpei(济南市) - [Github](https://github.com/ZhengMingpei)\n* :clock8: [视频进度条生成工具](https://gitee.com/zhengmingpei/VideoProgressBarTool-Windows)：帮助制作视频进度条的辅助小工具(暂时在 Gitee 上) - [更多介绍](https://www.bilibili.com/video/BV1ZA411p7M2/)\n\n### 2020年12月23号添加\n---\n#### getjennyli - [Github](https://github.com/getjennyli)\n* :white_check_mark: [Bucket](https://apps.apple.com/cn/app/bucket-achieve-your-goals/id1534447271)：愿望清单 App\n#### ZhongYuanDong(佛山市) - [Github](https://github.com/yuandongzhong//)\n* :x: [白菜录屏](https://www.bakchoi.com)：简洁、功能强大的 Mac 录屏软件。\n#### ysykzheng(成都)\n* :x: [我比你强问答](https://wobiniqiang.com/)：常见知识问答收集，不用到处找了。\n\n### 2020年11月26号添加\n---\n#### 阿猫阿狗 - [博客](https://blog.yhz610.com/)\n* :white_check_mark: [极简导航](https://nav.yhz610.com/)：专注极简的导航主页 - [更多介绍](https://github.com/leslieyin/jjdaohang)\n\n### 2020年11月23号添加\n---\n#### hooopo (北京) - [Github](https://github.com/hooopo), [博客](https://twitter.com/hooopo)\n* :x: [DrawERD](https://drawerd.com)：数据库ERD协作工具 - [更多介绍](https://v2ex.com/t/661611)\n* :x: [Hackershare](https://hackershare.dev)：开源书签共享工具 - [更多介绍](https://v2ex.com/t/709437)\n\n### 2020年11月20号添加\n---\n#### Jeff(杭州) - [Github](https://github.com/JeffLi1993), [博客](openwrite.cn)\n* :white_check_mark: [微信公众号 Markdown 编辑器 - OpenWrite](https://md.openwrite.cn/)：专业强大的微信公众平台在线编辑排版工具，提供手机预览功能，让用户在微信图文 、文章、内容排版、文本编辑、素材编辑上更加方便 - [更多介绍](https://openwrite.cn/product-markdown)\n\n### 2020年11月16号添加\n---\n#### clwater(上海) - [Github](https://github.com/clwater)\n* :x: [RobinAlgo](http://robinalgo.com/)：RobinAlgo - 可视化算法学习平台 - [更多介绍](https://robinalgo.com/about)\n\n### 2020年11月13号添加\n---\n#### 竹行(杭州) - [Github](https://github.com/zimujiang)\n* :white_check_mark: [字幕酱](https://www.zimujiang.com?utm_source=chinese-independent-developer)：字幕在线生成、翻译、格式转换的工具网站 - [更多介绍](https://www.zimujiang.com/about_us.html)\n\n### 2020年10月28号添加\n---\n#### Vove7(上海) - [Github](https://github.com/Vove7)\n* :white_check_mark: [VAssistant](https://www.coolapk.com/apk/cn.vove7.vassistant)：Android 平台强大的自定义语音助手 - [博客](https://vove.gitee.io)\n* :white_check_mark: [EnergyRing](https://www.coolapk.com/apk/cn.vove7.energy_ring)：挖孔屏福利，电量指示环\n\n### 2020年10月24号添加\n---\n#### RiverTwilight(成都) - [Github](https://github.com/RiverTwilight), [博客](https://blog.yungeeker.com)\n* :x: [云极客工具](https://www.ygktool.cn)：功能丰富的渐进式在线工具网站（开源） - [更多介绍](https://blog.yungeeker.com/blog/07cc5138)\n\n### 2020年10月20号添加\n---\n#### GeorgeZou(北京) - [Github](https://github.com/georgezouq), [博客](https://blog.tefact.com/)\n* :x: [星搭 StaringOS](https://staringos.com)：星搭无代码平台，快速构建中后台、小程序\n* :clock8: [Tefact编辑器](https://github.com/staringos/tefact)：轻量级开源无代码 H5、表单 编辑器\n* :white_check_mark: [真科技周刊](https://github.com/Tefact/tefact-weekly)：科技 · 商业 · 人文 · 未来\n\n### 2020年10月06号添加\n---\n#### Mr.Dear(杭州) - [Github](https://github.com/mrdear)\n* :white_check_mark: [动森生活家](https://mrdear.cn/posts/animal_crossing_recommed.html)：动森服装码收集,归类以及分享的微信小程序\n\n### 2020年9月26号添加\n---\n#### WhiteCosm0s(上海) - [Github](https://github.com/WhiteCosmos)\n* :white_check_mark: [RabiAPI](https://apps.apple.com/cn/app/id1524200727)：开箱即用的 Java 接口文档生成工具 - [更多介绍](https://github.com/RabiAPI/RabiAPI-Support)\n\n### 2020年7月27号添加\n---\n#### Lenix(北京) - [Github](https://github.com/w3yyb), [博客](http://blog.p2hp.com/)\n* :x: [PHP中文站](http://www.p2hp.com/)：最专业的PHP资源网站：PHP教程, PHP中文手册, PHP开发工具, PHP框架文档大全！- [更多介绍](https://www.p2hp.com/about.php)\n\n### 2020年7月23号添加\n---\n功夫熊猫(北京) - [Github](https://github.com/langxuelang)\n* :white_check_mark: [名校讲座](http://qiniu.gaotenglife.com/gh_ce3241405e01_860.jpg): 收集发布北京上海等地名校的公开讲座，让更多的人聆听名校的声音 - [更多介绍](https://www.gaotenglife.com/?p=539)\n\n### 2020年7月18号添加\n---\n#### weijarz(吉林) - [Github](https://github.com/weijarz)\n* :white_check_mark: [Reabble](https://reabble.cn)：面向 Kindle 等 E-Ink 设备的 RSS 客户端，带推送服务\n* :x: [OxyPlayer](https://player.oxyry.com/)：专为学英语设计的视频播放器，单句重复/双语字幕/情境填词\n\n### 2020年7月15号添加\n---\n#### getjennyli - [Github](https://github.com/getjennyli)\n* :white_check_mark: [Feelings](https://apps.apple.com/cn/app/feelings-mood-journal/id1446192624)：心情树洞日记 App\n* :white_check_mark: [Booka](https://apps.apple.com/cn/app/booka-minimal-booklist/id1116150273)：书单管理 App\n\n### 2020年6月30号添加\n---\n#### sudo2u（深圳）- [Github](https://github.com/hello-world-404)\n* :x: [Helium N](https://geshkii.xyz/helium/): ADB 工具箱 - [更多介绍](https://www.geshkii.xyz/geshkii/)\n\n\n### 2020年6月29号添加\n---\n#### JumpAlang(泉州) - [博客](http://www.alang.run)\n* :white_check_mark: [一起听歌吧](http://music.alang.run)：同步多人在线听音乐聊天的网站。试想一下地球上任何一个角落的人根据自己的喜好，创建属于自己的音乐屋，让有相同喜好的人聚在一起实时听歌、分享、互动是多么有趣的事 - [更多介绍](http://www.alang.run/release)\n\n### 2020年6月5号添加\n---\n#### ZhongYuanDong (佛山) - [Github](https://github.com/yuandongzhong/), [博客](https://www.zhongyuandong.com)\n* :x: [Jsonman](https://jsonman.bakchoi.com/?ref=1c7)：零代码快速创建 JSON API (Mac App) - [更多介绍](https://apps.apple.com/us/app/jsonman-mock-api-in-seconds/id1514363623)\n\n\n### 2020年6月2号添加\n---\n#### 6r6(杭州) - [Github](https://github.com/6r6)\n* :x: [在线AI图像处理](https://photo.opencool.cn/)：免下载免注册的在线图像处理工具，支持黑白照片上色、图像无损放大、人像漫画化 - [更多介绍](https://www.yuque.com/docs/share/c102e8a2-23a5-470f-b615-d254d77685e6?#)\n\n\n### 2020年6月1号添加\n---\n#### timeromantic - [Github](https://github.com/timeromantic)\n* :x: [鱼塘热榜](https://mo.fish/)：专注摸鱼的趣味新闻热榜网站 - [更多介绍](https://mo.fish/main/comment/1202350)\n\n### 2020年5月31号添加\n---\n#### yuxiaoy(上海) - [Github](https://github.com/Yuxiaoy1), [微博](https://weibo.com/u/1802713725)\n* :x: [InfoHub](https://infohub.fun/)：简洁轻巧的科技、社区、娱乐、财经、体育、IT、游戏等综合资讯中心 - [更多介绍](https://eleduck.com/posts/74fg0O)\n\n### 2020年5月28号添加\n---\n#### 漂泊80(哈尔滨) - [Github](https://github.com/424626154), [博客](http://minis.zanzhe580.com/piao/apps)\n* :white_check_mark: [精酿笔记](https://itunes.apple.com/us/app/%E7%B2%BE%E9%85%BF%E7%AC%94%E8%AE%B0/id1177364674?l=zh&ls=1&mt=8)：家酿啤酒学习交流辅助小工具 - [更多介绍](https://kunwx.zanzhe580.com/appweb/beernotes_dapp)\n\n### 2020年5月15号添加\n---\nOldPanda [GitHub](https://github.com/OldPanda), [博客](https://old-panda.com/)\n* :x: [MPAA 电影分级插件](https://old-panda.com/projects/mpaa-rating-extension-project/)：在豆瓣电影、腾讯视频页面显示该片的 MPAA 分级 - [更多介绍](https://creatorsdaily.com/posts/f3510a80-6c40-494d-9404-a158c283c140)\n* :white_check_mark: [Bamboo](https://old-panda.com/projects/bamboo-parquet-viewer/)：可能是 macOS 上最好用的 Parquet 文件查看器\n* :white_check_mark: [Douban Book+](https://doubanbook.plus/)：打破豆瓣读书与各种电子书平台之间的壁障\n* :white_check_mark: [Green Tiles](https://green-tiles.vercel.app/)：统计程序员在 GitHub 上贴过的所有瓷砖\n* :white_check_mark: [小地瓜](https://xiaodigua.app/)：一键下载小红书帖子的图片视频\n\n### 2020年5月14号添加\n---\n#### Mark - [Github](https://github.com/markqq), [博客](https://marksanders.cn/)\n* :x: [triplan](https://triplan.tech/?utm_source=cid)：跨平台行程管理应用，全面提升你的出行体验 - [更多介绍](https://creatorsdaily.com/44c14492-ef09-4583-bc2b-4e96735f1027)\n\n### 2020年4月14号添加\n---\n#### Jezemy(广州) - [Github](https://github.com/Jezemy)\n* :x: [疯狂押韵](http://www.jezemy.cn/rhyme)：中文押韵短语查询的网站 - [更多介绍](https://github.com/Jezemy/ChineseRhymePhraseSearch)\n* [查看此作者在'程序员版面'的其他作品](https://github.com/1c7/chinese-independent-developer/blob/master/README-Programmer-Edition.md#jezemy%E5%B9%BF%E5%B7%9E---github)\n\n### 2020年3月26号添加\n---\n#### tobyglei - [Github](https://github.com/tobyglei)\n* :white_check_mark: [21云盒子](https://www.21yunbox.com)：最容易使用的云 - 自动化你的工作流程。代码构建，静态网页，Web应用发布，云数据库托管，SSL证书生成和维护，极速CDN，私有网络的一站式服务平台\n* :x: [BlinkMath](https://apps.apple.com/au/app/blinkmath/id1497540228?l=en)：iOS app，累了眨眨眼，动动脑!\n\n### 2020年3月23号添加\n---\n#### ZhangPingFan(深圳) - [Github](https://github.com/ZhangPingFan), [博客](https://neverlose.com.cn/)\n* :white_check_mark: [FastCode](https://apps.apple.com/cn/app/fastcode-code-in-your-pocket/id1441653112)：可以随时随地编辑运行前端代码的利器\n* :x: [今日趋势](https://neverlose.com.cn/trending/)：帮助您快速了解全网热点和市场行情的效率工具\n\n### 2020年3月13号添加\n---\n#### wmui - [Github](https://github.com/wmui)\n* :x: [聚享导航](https://www.86886.wang)：方便、简洁、快速的自定义网址导航站 - [更多介绍](https://blog.86886.wang/posts/5e41f4f3de5b175e4943156d)\n\n### 2020年3月1号添加\n---\n#### Tristan(北京) - [Github](https://github.com/zerosoul/), [博客](https://yangerxiao.com/)\n* :x: [土味情话生成器](https://works.yangerxiao.com/honeyed-words-generator/)：土味情话，定制生成 - [更多介绍](https://github.com/zerosoul/honeyed-words-generator)\n* :white_check_mark: [静心呼吸调节器](https://works.yangerxiao.com/breathe-relaxer/)：通过视觉反馈在线调节呼吸节奏 - [更多介绍](https://github.com/zerosoul/breathe-relaxer)\n* :white_check_mark: [在线图片压缩工具](https://works.yangerxiao.com/icfe/)：无他，又一个图片压缩工具，只不过是纯浏览器端压缩，即无后端技术支撑 - [更多介绍](https://github.com/zerosoul/image-compress-without-backend)\n\n### 2020年2月29号添加\n---\n#### Roderick Qiu(杭州) - [Github](https://github.com/RoderickQiu), [网站](https://r-q.name/)\n* :x: [wnr](https://wnr.scris.top)：跨平台的轻量计时软件，让你更高效、强力地管理作与息 - [更多介绍](https://wnr.scris.top/zh/)\n\n### 2020年2月11号添加\n---\n#### 周毅刚(上海) - [Github](https://github.com/Yigang0622), [博客](https://miketech.it/)\n* :white_check_mark: [Listify](https://apps.apple.com/cn/app/listify-simple-todo-app/id1410668897)：简约的清单应用 - [更多介绍](https://miketech.it/listify-page)\n\n### 2020年1月29号添加\n---\n#### Fancy(山东) - [Github](https://github.com/fanchangyong), [博客](https://github.com/fanchangyong/blog)\n* :x: [小鹿快传](https://deershare.com)：提供简单安全的在线P2P文件传输服务\n\n### 2020年1月17号添加\n---\n#### Jingle1267(北京) - [Github](https://github.com/jingle1267), [博客](http://94275.cn/)\n* :white_check_mark: [洪谷山](https://github.com/jingle1267/HelloCodeDev)：微信小程序每日朋友圈分享素材\n\n### 2020年1月16号添加\n---\n#### SanJin(北京) - [Github](https://github.com/sanjinhub), [博客](https://geek.lc)\n* :white_check_mark: [Thief](https://github.com/cteamx/Thief)：在任务栏、桌面、TouchBar 上进行摸鱼的神器 - [更多介绍](https://github.com/cteamx/Thief/blob/master/README.md)\n\n### 2019年1月10号添加\n---\n#### Tomxin7(桂林) - [Github](https://github.com/tomxin7), [博客](http://www.tomxin.cn/)\n* :x: [简单天气](http://domain.jiandan.live/weather.html)：不佳天气主动提醒 - [更多介绍](http://domain.jiandan.live/weather.html)\n\n### 2019年12月21号添加\n---\n#### 刘志军 - [Github](https://github.com/lzjun567)\n* :white_check_mark: [二十次幂](https://www.ershicimi.com/)：公众号阅读监控数据分析平台\n\n### 2019年12月19号添加\n---\n#### docs4dev - [Github](https://github.com/docs4dev)\n* :x: [Docs4dev](https://www.docs4dev.com/)：开发者文档在线浏览及翻译\n\n#### hui-Zz(杭州) - [Github](https://github.com/hui-Zz)\n* :white_check_mark: [RunAny](https://github.com/hui-Zz/RunAny)：一劳永逸的快速启动软件，拥有三键启动、一键直达、批量搜索、全局热键、短语输出、热键映射、脚本插件等功能 - [更多介绍](https://hui-zz.github.io/RunAny)\n\n### 2019年12月17号添加\n---\n#### suziwen - [Github](https://github.com/suziwen)\n* :white_check_mark: [小书匠](http://soft.xiaoshujiang.com)：专注于写作的 Markdown 笔记软件，支持多种第三方存储(印象笔记,有道笔记,为知笔记,Github,Gitee等)\n\n#### Banny(杭州) - [Github](https://github.com/hellobanny)\n* :white_check_mark: [我的小目标](https://apps.apple.com/cn/app/id1051212505)：个人积分管理软件，督促用户成为更好的自己\n* :white_check_mark: [红色工具箱](https://apps.apple.com/cn/app/id1473577627)：多个创意实用小工具集合，如肌肉启动，截屏记事，指尖轮盘等\n\n#### Hancel.Lin(深圳) - [GitHub](https://github.com/imlinhanchao), [博客](http://hancel.org/)\n* :white_check_mark: [摸鱼竞技大厅](https://room.adventext.fun/)：休闲游戏竞技大厅，支持多人在线联机游戏，包含多种休闲桌游与棋牌游戏。另外包含完整二次开发接口，可以快速开发出任意多人在线回合制游戏。 - [更多介绍](https://tiaoom.com/)\n* :white_check_mark: [WJU Puzzle](https://wju.adventext.fun/)：WJU 字母解密游戏，通过 5 种操作规则，解出 WJU 字母序列。 - [更多介绍](https://github.com/imlinhanchao/wju)\n* :white_check_mark: [Adventext & 千屿引擎](https://adventext.fun/)：文字冒险游戏引擎，包含用来创作文字冒险游戏的在线编辑器以及运行游戏的引擎，你可以在这里创作文字冒险游戏，调试运行。然后推送给世界上的任何玩家游玩！ - [更多介绍](https://github.com/imlinhanchao/adventext)\n* :white_check_mark: [Time 时间胶囊](https://time-pack.com/)：封存记忆，送给未来。基于小程序实现的时间胶囊，支持胶囊提醒与赠送胶囊。 - [更多介绍](https://github.com/imlinhanchao/time-pack-miniprogram)\n* :white_check_mark: [Cashflow 钱去哪儿了](https://s.hancel.org/)：个人消费交易记录管理分析网站应用，通过同步微信与支付宝对账单，管理个人消费交易数据。 - [更多介绍](https://github.com/imlinhanchao/cashflow)\n* :white_check_mark: [Maze Endless](https://store.steampowered.com/app/2960080)：基于 Godot 开发的迷宫休闲游戏，从最简单的迷宫开始，逐渐挑战更加复杂的关卡，解开它们的谜团，找到出口。\n* :white_check_mark: [Vue 国际化开发助手](https://marketplace.visualstudio.com/items?itemName=hancel.front-i18n)：VSCode 扩展，快速为中文 Vue 项目添加国际化支持。\n* :white_check_mark: [Sticky Notes](https://github.com/imlinhanchao/sticky_notes)：Windows 桌面应用，可以用来记录你的工作事项，然后钉在桌面上，随时可以查看修改。\n* :white_check_mark: [迷宫游戏Maze](https://maze.hancel.org/)：摸鱼小游戏迷宫 Maze，真实体验探索迷宫的乐趣！\n* :white_check_mark: [Storage Editor](https://chrome.google.com/webstore/detail/lpmmcjhefcghagdhnpbodfdamfmlicfn)：网页 LocalStorage 和 SessionStorage 解析与编辑工具。 - [更多介绍](https://github.com/imlinhanchao/crx_storage_editor)\n* :white_check_mark: [摸鱼大闯关](https://p.hancel.org/)：摸鱼闯关网页解谜游戏，结合了多种计算机技术与计算机社区梗。摸鱼也要学技术！\n* :white_check_mark: [摸鱼派聊天室 客户端](https://github.com/imlinhanchao/pwl-chat)：摸鱼派聊天室的桌面客户端，摸鱼聊天更方便啦！\n* :white_check_mark: [摸鱼派聊天室 VSCode 扩展](https://marketplace.visualstudio.com/items?itemName=hancel.pwl-chat)：支持在 VSCode 中摸鱼聊天的扩展应用，开启摸鱼新姿势。 [更多介绍](https://github.com/imlinhanchao/vsc-pwl-chat)\n* :white_check_mark: [Serial Port Helper](https://marketplace.visualstudio.com/items?itemName=hancel.serialport-helper)：VSCode扩展，支持在 VSCode 中连接与调试串口通信。 [更多介绍](https://github.com/imlinhanchao/vsc-serialport-helper)\n* :x: [自考英语查询](https://eng.sxisa.com/)：英语单词查询网站，支持简单的笔记记录 - [更多介绍](https://github.com/imlinhanchao/eng)\n* :white_check_mark: [Code Snippet](https://code-snippet.cn/)：代码片段分享网站，类似 Gist，新增了代码在线运行和网页预览的功能 - [更多介绍](https://github.com/imlinhanchao/code-snippet)\n* :white_check_mark: [Google 翻译 VSCode 扩展](https://marketplace.visualstudio.com/items?itemName=hancel.google-translate)：基于 Google 翻译的 VSCode 扩展 - [更多介绍](https://github.com/imlinhanchao/vsc-google-translate)\n* :white_check_mark: [婚礼邀请函制作工具](http://marry.git.hancel.org/)：快速自定义批量制作婚礼邀请函 - [更多介绍](https://github.com/imlinhanchao/invitation-card-maker)\n* :white_check_mark: [KeyGenius](https://github.com/imlinhanchao/KeyGenius/releases/download/1.0.2/KeyGenius.exe)：用来定时按下某个按键。比如 Ctrl + S，免得忘记保存 - [更多介绍](https://github.com/imlinhanchao/KeyGenius)\n* :clock8: [Librejo 我的书](https://librejo.cn)：图书笔记借阅管理的网站 - [更多介绍](https://github.com/imlinhanchao/librejo)\n* :white_check_mark: [Markdown Image](https://marketplace.visualstudio.com/items?itemName=hancel.markdown-image)：VSCode 扩展，直接复制粘贴即可在 Markdown 文件即可插入图片，支持上传到多种图床 - [更多介绍](https://github.com/imlinhanchao/vsc-markdown-image)\n* :white_check_mark: [微信公众号代码高亮插件](https://chrome.google.com/webstore/detail/kbiedhbfjcadjlajanccenpiicgdbfaf)：Chrome扩展，可以在公众号文章插入代码高亮，支持多个高亮主题自选，行号和二次编辑 - [更多介绍](https://github.com/imlinhanchao/crx_wx_code_highlight)\n\n### 2019年12月9号添加\n---\n#### nicejade(ShenZhen) - [Github](https://github.com/nicejade), [博客](https://www.jeffjade.com)\n* :white_check_mark: [Arya - 在线 Markdown 编辑器](https://markdown.lovejade.cn)：基于 Vue、Vditor 所构建的在线 Markdown 编辑器 - [更多介绍](https://www.jeffjade.com/2019/05/31/155-arya-markdown-online-editor/)\n\n### 2019年11月27号添加\n---\n#### zoumorn - [Github](https://github.com/zoumorn)\n* :white_check_mark: [一撮毛](https://github.com/zoumorn/tkreborn)：全网最牛自淘返现工具\n\n### 2019年11月24号添加\n---\n#### bigzhu - [Github](https://github.com/bigzhu)\n* :white_check_mark: [Ebuoy](https://play.google.com/store/apps/details?id=net.bigzhu.english_buoy)：利用 YouTube 字幕刷视频轻松学习英语的 APP - [更多介绍](https://github.com/bigzhu/Ebuoy)\n\n### 2019年11月22号添加\n---\n#### Albuer(FuZhou) - [Github](https://github.com/albuer)\n* :white_check_mark: [iBlockly](https://github.com/albuer/iBlockly)：基于 Google Blockly 的积木编程软件\n\n### 2019年11月21号添加\n---\n#### ETY001(淄博) - [Github](https://github.com/ety001), [博客](https://blog.domyself.me/)\n* :white_check_mark: [网络剪切板](https://oc.to0l.cn/)：多终端传输文本信息。\n* :x: [温故知新](https://chrome.google.com/webstore/detail/review-bookmarks/oacajkekkegmjcnccaeijghfodogjnom)：帮助你重温或整理书签的 Chrome 浏览器插件 - [更多介绍](https://bm.to0l.cn/)\n\n### 2019年11月13号添加\n---\n#### 周利刚(杭州)\n* :white_check_mark: [xCoins](https://apps.apple.com/cn/app/id1335320802)：迭代比特币私钥,汇总用户币的总价值\n* :white_check_mark: [足迹中国](https://apps.apple.com/cn/app/id1482250279)：用地图截图记录你去过的中国的省市(上架不久,完善中)\n* :white_check_mark: [假装来电](https://apps.apple.com/cn/app/id1475866564)：设置一定时间后,收到虚假的来电,用于逃离某些场合\n* :white_check_mark: [iStat Widget](https://apps.apple.com/cn/app/id1476638491)：查看硬件信息\n\n### 2019年11月6号添加\n---\n#### lemonTree - [Github](https://github.com/ishare20)\n* :white_check_mark: [问题库](https://questionlib.net/)：在线搜索查看试题答案，查看试题解析，讨论试题\n* :white_check_mark: [文字表情制作器](https://www.coolapk.com/apk/79950)：一键制作文字表情\n\n### 2019年10月30号添加\n---\n#### 何辉（深圳） - [Github](https://github.com/qq475742653)\n* :x: [相见易](http://www.headset.xin/LHS)：允许用户在手机上、网页上自主设计表单、图表，存储和查询数据、网页与手机端的数据互通（演示用户：13510928305,密码：123456）\n* :x: [自由地呼吸](http://www.headset.xin/freebreath)：呼吸训练、规律动作训练+心事倾述+呼吸康复学堂,用户可定义呼吸训练和计划\n* :x: [街坊情圣](http://www.headset.xin/NLovers)：恋爱学堂，包含土味情话、恋爱攻略文章、恋爱专家音频教学、用户关于爱情问题讨论\n* :x: [死亡时间预测](http://www.headset.xin/dieDate)：包含死亡时间预测工具、养生知识学堂、每日养生任务计划、定时提醒。\n* :x: [密码生成管理器](http://www.headset.xin/mypassword)：包含云端存储、智能的问题密码的生成、密码搜索、复制、密码期限管理提醒（演示用户：13510920000,密码：123456）\n* :x: [mypassword](https://www.headset.xin/mypassword)：根据熟悉问题产生的易记且超强密码的生成工具、管理工具。演示用户：13510920000,密码：123456\n* :x: [中国诗人](http://www.headset.xin/tangsongsc)：收录80万首，远古、古代、当代、近现代的古诗网站，支持用户上传创作诗词\n* :x: [VR+360全景图展示](http://www.headset.xin/VR)：360度VR现场模式全景展示卖房案例。支持 Flash 和 H5 两种模式。VR模式需要配带VR设备支持\n\n### 2019年10月28号添加\n---\n#### 小鱼(北京) - [Github](https://github.com/croath), [博客](https://medium.com/@croath/%E5%B0%8F%E7%A8%8B%E5%BA%8F%E7%94%9F%E6%88%90%E5%9B%BE%E7%89%87%E5%88%86%E4%BA%AB%E6%9C%8B%E5%8F%8B%E5%9C%88-12d5226e3331)\n* :white_check_mark: [快海报](https://kuaihaibao.com)：小程序分享海报生成服务 - [更多介绍](https://developers.weixin.qq.com/community/develop/article/doc/0008eedae74af82abb59c83b656c13)\n\n### 2019年10月26号添加\n---\n#### sdmtai(山东) - [Github](https://github.com/faithxie)\n* :white_check_mark: [历史地图](https://sdmtai.github.io/)：中国历史疆域地图\n\n### 2019年10月21号添加\n---\n#### 土豆(北京) - [Github](https://github.com/iphysresearch), [博客](https://iphysresearch.github.io/)\n* :x: [DataSciCamp](https://www.datascicamp.com)：数据科学竞赛题目汇编 - [更多介绍](https://github.com/datascicamp/DataSciCamp)\n\n### 2019年10月20号添加\n---\n#### mdnice(杭州) - [Github](https://github.com/guanpengchn), [博客](https://draw.mdnice.com/)\n* :white_check_mark: [markdown-nice](https://mdnice.com/)：支持自定义样式的微信 Markdown 排版工具 - [更多介绍](https://github.com/mdnice/markdown-nice)\n* :white_check_mark: [markdown-resume](https://resume.mdnice.com/)：支持 Markdown 和富文本的在线简历排版工具 - [更多介绍](https://github.com/mdnice/markdown-resume)\n\n#### 痕迹(深圳) - [Github](https://github.com/lijy91), [博客](https://thecode.me)\n* :x: [wordway](https://wordway.thecode.me)：由社区驱动的背单词应用 - [更多介绍](https://github.com/wordway/wordway-app/issues/1)\n\n### 2019年10月18号添加\n---\n#### Tengfei(北京) - [博客](https://tengfei.fun)\n* :x: [创造者日报](https://creatorsdaily.com)：每天发现一款有趣产品\n\n### 2019年10月17号添加\n---\n#### zkqiang - [Github](https://github.com/zkqiang)\n* :white_check_mark: [微信公众号 Markdown 编辑器](https://prod.zkqiang.cn/wxeditor)：将 Markdown 转换为微信公众号文章的在线编辑器\n\n### 2019年10月13号添加\n---\n#### zerosoul - [Github](https://github.com/zerosoul)\n* :white_check_mark: [中国古典颜色手册](https://colors.ichuantong.cn/)：中国古典颜色的在线网站\n\n### 2019年10月9号添加\n---\n#### Maxwell - [Github](https://github.com/maxwellyue)\n* :white_check_mark: [微信小程序-数独之光](https://www.jianshu.com/p/7a9e970dab2a)：经典益智数字游戏数独\n\n### 2019年10月7号添加\n---\n#### zhshch2002 - [Github](https://github.com/zhshch2002)\n* :x: [星文 - Xstar News](https://xstar.news/#/)：有理想的~~划水~~独立创作博客聚合网站\n\n### 2019年9月30号添加\n---\n#### dorjmi - [Github](https://github.com/dorjmi)\n* :x: [nothingblock](https://github.com/dorjmi/nothingblock)：屏蔽网页多余元素, 还你一个干净的世界\n\n### 2019年9月12号添加\n---\n#### dylan(深圳) - [Github](https://github.com/DylanXing), [博客](https://xingdi.me)\n* :x: [极简待办](https://apps.apple.com/cn/app/%E6%9E%81%E7%AE%80%E5%BE%85%E5%8A%9E-%E8%BD%BB%E9%87%8F%E7%BA%A7%E7%9A%84%E7%8A%B6%E6%80%81%E6%A0%8F%E5%BE%85%E5%8A%9E%E5%B7%A5%E5%85%B7/id1454209103?mt=12)：轻量极的状态栏待办工具 - [更多介绍](https://xingdi.me/DList.html)\n\n### 2019年9月6号添加\n---\n#### Meilbn(杭州) - [Github](https://github.com/meilbn), [博客](https://meilbn.com)\n* :white_check_mark: [积木](https://apps.apple.com/cn/app/id1390979359)：简约而不简单的记账应用 - [更多介绍](https://meilbn.com/2018/06/06/app-geemoon-tips/)\n* :white_check_mark: [FrameWork](https://apps.apple.com/cn/app/id1412383595)：支持多尺寸、多机型的带壳截屏工具 - [更多介绍](https://meilbn.com/2018/11/26/app-framework-tips/)\n\n### 2019年9月5号添加\n---\n#### Svend(苏州) - [Github](https://github.com/gee1k/uPic), [博客](https://blog.svend.cc/upic/)\n* :white_check_mark: [uPic](https://github.com/gee1k/uPic)：简洁的 Mac 图床客户端 uPic\n\n### 2019年8月20号添加\n---\n#### wangyiwy(重庆) - [Github](https://github.com/wangyiwy)\n* :x: [在线工具 - OKTools](https://oktools.net)：程序开发在线工具站。主要有 JSON 格式化、Unix 时间戳转换、Base64 编码、加密解密、图片压缩、IP 查询、Hash计算、JSON转Go、JSON转XML、WebSocket测试等20多个工具\n\n#### hujianhang(Beijing) - [Github](https://github.com/hujianhang2996)\n* :x: [Forget](https://apps.apple.com/cn/app/id1448659423)：时间管理软件 - [更多介绍](https://github.com/hujianhang2996/forget)\n\n### 2019年8月18号添加\n---\n#### weilaihui(成都) -  [GitHub](https://github.com/weilaihui)\n* :x: [GRLib](https://www.grlib.com/)：收藏优质 GitHub 项目\n\n### 2019年8月11号添加\n---\n#### Kiddyu(保定) - [Github](https://github.com/kiddyuchina)\n* :white_check_mark: [新趣集](https://xinquji.com)：互联网新产品发现社区，36kr next 的替代品\n* :x: [独角兽排行](https://dujiaoshou.io)：全球独角兽企业榜单与招聘\n\n### 2019年8月2号添加\n---\n#### 张琪灵(福州) - [Github](https://github.com/Zo3i)\n* :x: [Xcoding](http://xcoding.me) ：在线编程学习 Javascript 的刷题网站，帮助编程初学者学习编码 - [更多介绍](https://zxx.im)\n\n### 2019年8月1号添加\n---\n#### Andy - [Github](https://github.com/ifrontend-xyz)\n* :x: [Research](http://www.suiyuanka.com/?q=%E7%8B%AC%E7%AB%8B%E5%BC%80%E5%8F%91%E8%80%85)：快速搜索相关内容\n\n#### fancy - [Github](https://github.com/fanchangyong)\n* :x: [橙子简历](https://wonderfulcv.com)：在线简历制作网站-制作简历，告别word排版\n\n### 2019年7月23号添加\n---\n#### 625781186 - [Github](https://github.com/625781186)\n* :clock8: [gitpyman](https://github.com/625781186/gitpyman)： 管理备注 Github 的桌面程序(用PyQt5写的)\n\n### 2019年7月22号添加\n---\n#### liudanking - [Github](https://github.com/liudanking)\n* :white_check_mark: [又开车了](https://liudanking.com/wp-content/uploads/2019/07/qrcode_for_gh_110358ae70f0_258.jpg)： 汽车类视频节目聚合订阅微信服务号\n\n### 2019年7月11号添加\n---\n#### Montisan - [Github](https://github.com/montisan)\n* :x: [小合集](https://ebooki.cn/)：聚合公众号文章精选合集阅读\n\n### 2019年7月10号添加\n---\n#### Benb - [Github](https://github.com/Bin-Huang)\n* :white_check_mark: [WhereMyLife](https://wheremylife.cn)：在 Kindle 上阅读 RSS，每天把最新文章推送给你。完全免费，支持添加自己的订阅源\n#### ieliwb - [Github](https://github.com/ieliwb)\n* :white_check_mark: [今日热榜](https://tophub.today/)：聚合全网新闻头条热点排行榜\n\n### 2019年7月3号添加\n---\n#### Winterfell(上海) - [Github](https://github.com/imikay)\n* :x: [MySlide](https://myslide.cn)：类似 SlideShare 和 SpeakerDeck 的 PPT 分享站\n\n### 2019年6月24号添加\n---\n#### 土豆(北京) - [Github](https://github.com/iphysresearch/)\n* :x: [Data Science Challenge / Competition Deadlines](https://iphysresearch.github.io/DataSciComp/)：数据科学赛题汇编+赛题注册倒计时\n\n### 2019年6月23号添加\n---\n#### jiajunhuang(深圳) - [Github](https://github.com/jiajunhuang), [博客](https://jiajunhuang.com/)\n* :x: [把Kindle笔记导出成纯文本](https://tools.jiajunhuang.com/)：一键将 Kindle 笔记导出成纯文本，方便编辑成 markdown 等\n\n### 2019年6月19号添加\n---\n#### Taufook(珠海) - [Github](https://github.com/taufook), [博客](https://taufook.com)\n* :x: [呼吸里（Breathin）](https://apps.apple.com/cn/app/%E5%91%BC%E5%90%B8%E9%87%8C/id1468461396)：简洁轻量的深呼吸练习 App\n\n### 2019年6月5号添加\n---\n#### vulgur - [Github](https://github.com/vulgur), [博客](https://vulgur.github.io)\n* :x: [极简翻页时钟（Zen Flip Clock）](https://itunes.apple.com/us/app/zen-flip-clock/id1265404088?l=zh&ls=1&mt=8)：免费无广告的极简主义翻页钟&番茄钟 app\n\n### 2019年6月4号添加\n---\n#### Maxwell\n* :white_check_mark: [TOP5优势测试](https://tva1.sinaimg.cn/large/007rAy9hgy1g3ofb94rtfj325s0m8wis.jpg)：微信小程序，发现个人TOP5的优势\n\n\n### 2019年5月28号添加\n---\n#### LvDunn(Beijing) - [Github](https://github.com/LvDunn)\n* :white_check_mark: [WeChatAssistant](https://github.com/LvDunn/WeChatAssistant#%E5%9B%9B%E4%B8%8B%E8%BD%BD)：微信关键词回复、多群群发的软件\n\n#### Chrissen(Shanghai) - [Github](https://github.com/chrissen0814)\n* :white_check_mark: [卡片夹](https://www.coolapk.com/apk/204800)：整理你的碎片信息 - [更多介绍](https://blog.csdn.net/ChrisSen/article/details/82966008)\n\n### 2019年5月23号添加\n---\n#### yhlben(成都) - [Github](https://github.com/yhlben)\n* :x: [成都房源分析](https://cdfangyuan.cn)：根据成都最新摇号房源，可视化数据分析 - [更多介绍](https://github.com/yhlben/cdfang-spider)\n\n### 2019年5月21号添加\n---\n#### mezw\n* :x: [mezw搜索](https://so.mezw.com)：聚合搜索引擎网站\n* :x: [emoji短网址](https://e.mezw.com)：将网址变成一串带 Emoji 表情的链接\n* :x: [PS投影转换为CSS3工具](https://psd2css.mezw.com)：设计师可利用它快速提供实现PS图层投影效果的 CSS3 代码\n\n#### Little Panda - [Github](https://github.com/thelittlepandaisbehind)\n* :white_check_mark: [Project Eye](https://github.com/Planshit/ProjectEye/releases)：基于20-20-20规则的用眼休息提醒 Windows 软件 - [更多介绍](https://github.com/Planshit/ProjectEye)\n\n### 2019年5月13号添加\n---\n#### Fly Lewis(广州)\n* :white_check_mark: [APP不释手](https://pujivideo.neocities.org/app/)：iOS 应用推荐及吐槽小程序\n\n### 2019年5月1号添加\n---\n#### timqian - [Github](https://github.com/timqian), [博客](https://t9t.io)\n- :x: [open source jobs](https://oo.t9t.io/jobs)：为开源项目工作并获得报酬 - [更多介绍](https://github.com/t9tio/open-source-jobs)\n\n### 2019年4月29号添加\n---\n#### YuzhouZhang(杭州) - [Github](https://github.com/YuzhouZhang)\n* :x: [闪电词典](https://play.google.com/store/apps/details?id=com.wingtech.quicklearnersdictionary)：取词最快的英英词典！\n\n### 2019年4月28号添加\n---\n#### wanglian - [Github](https://github.com/wanglian)\n* :white_check_mark: [WorkBase](https://github.com/wanglian/workbase-server)：让企业和个人构建开放安全的通信服务 - [更多介绍](https://wanglian.github.io/workbase-server/)\n\n### 2019年4月27号添加\n---\n#### tamlok - [Github](https://github.com/tamlok/vnote), [博客](https://tamlok.github.io/vnote)\n* :x: [VNote](https://tamlok.github.io/vnote)：更懂程序员和 Markdown 的跨平台笔记软件！ - [更多介绍](https://sspai.com/post/46902)\n\n### 2019年4月26号添加\n---\n#### a188037445 - [Github](https://github.com/a188037445)\n* :x: [Hash Calculator](https://github.com/a188037445/Hash-Calculator)：极速哈希计算器\n\n### 2019年4月22号添加\n---\n#### zhuowenli - [Github](https://github.com/zhuowenli)\n* :white_check_mark: [Githuber](https://chrome.google.com/webstore/detail/githuber-%E5%BC%80%E5%8F%91%E8%80%85%E7%9A%84%E6%96%B0%E6%A0%87%E7%AD%BE%E9%A1%B5/janmcneaglgklfljjcpihkkomeghljnf)：帮助 GitHub 开发者每日发现优质内容的 Chrome 主页拓展 - [更多介绍](https://github.com/zhuowenli/githuber)\n\n### 2019年4月20号添加\n---\n#### xiaohulu - [GitHub](https://github.com/blocklang)\n* :x: [块语言](https://blocklang.com)：软件拼装平台\n\n### 2019年4月19号添加\n---\n#### danloh - [Github](https://github.com/danloh)\n* :x: [RutHub](https://ruthub.com/): 按主题收集好东西及分享的地方(由豆瓣豆列启发)\n\n### 2019年4月17号添加\n---\n#### whbalzac - [Github](https://github.com/whbalzac)\n* :white_check_mark: [思诗 - 诗歌壁纸桌面](https://itunes.apple.com/cn/app/id1416483550)：Mac端、诗歌壁纸\n\n### 2019年4月16号添加\n---\n#### iizvv - [Github](https://github.com/iizvv)\n* :white_check_mark: [爱美剧Mac客户端](https://github.com/imeiju/iMeiJu_Mac)：爱美剧Mac客户端\n\n\n### 2019年4月15号添加\n---\n#### yuzexia(上海) - [Github](https://github.com/yuzexia)\n* :x: [iw3cplus](http://www.xiayuze.com/wxtools/w3cplus.jpg)：前端社区 w3cplus 的小程序\n\n### 2019年4月14号添加\n---\n#### zgjie\n* :white_check_mark: [相照（Timeflower）](https://itunes.apple.com/cn/app/id1436035479)：轻松整理照片，支持iOS，iPadOS，macOS - [Twitter](https://twitter.com/timeflowerphoto)\n\n### 2019年4月13号添加\n---\n#### pianoguy(法國·南特) - [Github](https://github.com/jingkecn), [博客](https://zhuanlan.zhihu.com/pianoguy)\n* :white_check_mark: [Interactive Math Pad](https://github.com/jingkecn/interactive-math-pad-android/releases)：數學公式手寫板（Android，支持導出 LaTex & Math ML，PS：復刻下架應用 MyScript MathPad） - [更多介绍](https://zhuanlan.zhihu.com/p/60476337)\n\n#### giscafer - [GitHub](https://github.com/giscafer)\n\n* :white_check_mark: [前端小助手](https://user-images.githubusercontent.com/8676711/51597092-633a3e80-1f35-11e9-9042-adde594b52c7.jpg) ：微信小程序，聚合早报、周刊等学习资源\n\n### 2019年4月12号添加\n---\n#### wonderbeyond - [GitHub](https://github.com/wonderbeyond)\n* :x: [HitUP](https://chrome.google.com/webstore/detail/hitup/eiokaohkigpbonodjcbjpecbnccijkjb)：Chrome 扩展，利用 New Tab “空白页” 助您保持对流行技术趋势的跟进，附带小福利 - [更多介绍](https://www.v2ex.com/t/537982)\n\n#### zhaoolee - [Github](https://github.com/zhaoolee)\n* :white_check_mark: [Chrome 插件英雄榜](https://github.com/zhaoolee/ChromeAppHeroes)： 🌈 为优秀的 Chrome 插件写一本中文说明书, 让 Chrome 插件英雄们造福人类~\n\n#### nwsuafzq - [Github](https://github.com/nwsuafzq)\n* :x: [小度涂鸦](https://www.coolapk.com/apk/188947)：安卓版的涂鸦软件 - [更多介绍](https://github.com/nwsuafzq/duya_doodle)\n\n### 2019年4月11号添加\n---\n#### waningflow - [Github](https://github.com/waningflow)\n* :x: [I Remember!](https://itunes.apple.com/cn/app/id1449941592)：纪念日应用，让你轻松回答“XX恋爱520天是几月几号”此类问题\n* :x: [Logo Generator](https://tools.waningflow.com/logo-generate)：可以快速生成类似 YouTube logo 的网站\n\n#### onlymash - [Github](https://github.com/onlymash)\n* :white_check_mark: [Flexbooru](https://play.google.com/store/apps/details?id=onlymash.flexbooru.play)：兼容 [Danbooru](https://github.com/r888888888/danbooru)、[Moebooru](https://github.com/moebooru/moebooru) 和 Gelbooru 等图版引擎的开源 Android 客户端，支持 Muzei 壁纸 - [更多介绍](https://github.com/flexbooru/flexbooru)\n\n### 2019年4月10号添加\n---\n#### Bakumon - [Github](https://github.com/Bakumon)\n* :white_check_mark: [那样记账](https://www.coolapk.com/apk/188475)：简单纯粹的 Android 端记账应用，旨在以简单的方式让用户慢慢建立起良好的消费习惯 - [更多介绍](https://wallet.bakumon.me/)\n\n#### Marno - [Github](https://github.com/MarnoDev), [博客](https://juejin.im/user/56c1c513c24aa800534e85f3)\n* :x: [Readhub+](https://www.coolapk.com/apk/217734)：可能是目前为止最好用的第三方 Readhub 客户端 - [更多介绍](https://mp.weixin.qq.com/s/-txu4H7KmCpP14t-WI8yLQ)\n\n#### tower1229 - [Github](https://github.com/tower1229)\n* :white_check_mark: [宝贝成长助理小程序](https://refined-x.com/asset/baby_assistant.png)：引用世界卫生组织儿童生长标准数据，辅助衡量宝宝的成长健康状态 - [更多介绍](https://mp.weixin.qq.com/s/CVQWLJ5Wn9gcAP4NCEhNqw)\n\n### 2019年4月9号添加\n---\n#### DerekCoder - [GitHub](https://github.com/derekcoder)\n* :x: [Grape for GitHub](https://itunes.apple.com/app/apple-store/id1371929193?mt=8)：简洁且功能强大的 GitHub 客户端 - [更多介绍](https://sspai.com/post/52291)\n\n#### cuiliang(BeiJing) - [Github](https://github.com/cuiliang)\n* :white_check_mark: [Quicker](https://getquicker.net)：Windows 上的捷径 - [更多介绍](https://sspai.com/post/47776)\n\n#### biqinglin(Shanghai) - [GitHub](https://github.com/biqinglin)\n* :x: [份子记账](https://itunes.apple.com/cn/app/id1244522074?mt=8)：专属于中国人的份子钱情结 - [更多介绍](https://sspai.com/post/53916)\n\n### 2019年3月25号添加\n---\n#### Steven_Zhang - [微博](https://weibo.com/zjwen1006)\n* :x: [诗雨](https://itunes.apple.com/cn/app/id1193114042)：有声有色有韵味的天气 - [更多介绍](https://www.jianshu.com/p/591dfd4de360)\n* :white_check_mark: [日课](https://itunes.apple.com/cn/app/id984957369)：给每一位好读诗的人\n* :x: [墨客·诗](https://itunes.apple.com/cn/app/id992382043)：传承中国传统文化 - [更多介绍](https://www.jianshu.com/p/ba31d0dfbb2c)\n* :white_check_mark: [百变时钟](https://itunes.apple.com/cn/app/id1434282577)：选一款您中意的时钟 - [更多介绍](https://www.jianshu.com/p/1f1c3d8e63ef)\n\n#### timqian - [Github](https://github.com/timqian), [博客](https://t9t.io)\n- :x: [tomato-pie](https://chrome.google.com/webstore/detail/tomato-pie/gffgechdocgfajkbpinmjjjlkjfjampi)：番茄工作法的一种新的 UI 尝试 - [更多介绍](https://github.com/t9tio/tomato-pie)\n\n\n### 2019年3月23号添加\n---\n#### brenner - [Github](https://github.com/brenner8023)\n* :x: [工大导航](https://brenner8023.github.io)：一个帮助大家拓展知识面的导航站点 - [更多介绍](https://github.com/brenner8023/gdutnav)\n\n### 2019年3月7号添加\n---\n#### CS-Tao(武汉) - [Github](https://github.com/CS-Tao), [博客](https://home.cs-tao.cc/blog)\n* :white_check_mark: [图书馆座位自动预约软件](https://github.com/CS-Tao/whu-library-seat)：定时预约图书馆座位 - [更多介绍](https://home.cs-tao.cc/whu-library-seat/)\n\n### 2019年3月5号添加\n---\n#### z-song(上海) - [Github](https://github.com/z-song)\n* :x: [implode.io](https://implode.io/)： 在线运行、记录、分享 PHP 代码的网站\n\n### 2019年3月4号添加\n---\n#### Steve-xmh(深圳) - [Github](https://www.github.com/Steve-xmh/)\n* :clock8: [SteveScratchC](https://www.github.com/Steve-xmh/SteveScratchC)： 用C语言编写的Scratch编辑器 [更多介绍](https://Steve-xmh.github.io/SSCDoc)\n\n#### Eureka Chen - [GitHub](https://github.com/EurekaChen), [个人网站](https://eureka.name)\n* :x: [易易时间钟](http://www.9192631770.com/)：集传统节气、星座、天干地支计时为一体的是间钟\n* :x: [彩色易经](https://eeeeee.org/e)：群经之首，大道之源\n* :x: [易易网址](https://eeurl.com)：既能像短网址一样简化您的网址，也能像pastebin一样记载您的文本，并且可自定义短网址文本。\n\n### 2019年2月28号添加\n---\n#### Perchouli - [GitHub](https://github.com/perchouli), [博客](http://dmyz.org)\n* :white_check_mark: [有为法](https://youweifa.com)：企业或机构制作内部报告（管理会计报告）的应用\n* :x: [Meazhi](http://meazhi.com)：PostGis 和 OSM 瓦片服务器制作的中国历史地图\n* :white_check_mark: [中国色](http://zhongguose.com)：《色谱》颜色整理\n\n### 2019年2月27号添加\n---\n#### Yang(广州)\n* :white_check_mark: [XorPay.com 个人支付平台](https://xorpay.com)：个人可用的微信支付接口，支持 NATIVE/JSAPI/收银台/小程序等支付方式，资金由微信官方T+1结算自动下发个人银行卡\n\n### 2019年2月23号添加\n---\n#### Nine(深圳) - [Github](https://github.com/isnine), [博客](https://www.wxz.name)\n* :white_check_mark: [EASY](https://itunes.apple.com/cn/app/id1390326774)：基于机器学习智能整理手机照片\n* :x: [校园助手 - 属于你我的校园助手](https://itunes.apple.com/cn/app/id1164848835)：校园课程查询软件 - [更多介绍](https://github.com/isnine/HutHelper-Open)\n### 2019年2月2号添加\n---\n#### o1xhack(Seattle&上海) - [Github](https://github.com/o1xhack), [博客](http://www.o1xhack.com)\n* :x: [iOS app: Info It](https://itunes.apple.com/cn/app/info-it-%E9%80%9A%E8%BF%87%E5%88%86%E4%BA%AB%E5%BF%AB%E9%80%9F%E6%90%9C%E7%B4%A2%E7%94%B5%E5%BD%B1-%E4%B9%A6%E7%B1%8D%E4%BF%A1%E6%81%AF/id1178446966?l=en&mt=8)：利用 iOS 分享插件在任意地方快速搜索电影/图书相关信息 - [更多介绍](http://o1xhack.com/2018/03/10/infoit2/)\n* :white_check_mark: [iOS app: Coffee It](https://itunes.apple.com/cn/app/coffee-it-record-caffeine/id1216049514?l=en&mt=8)：记录追踪每日咖啡因摄入量，内置数据库 - [更多介绍](https://www.lifeanalysislab.com/#coffee-it)\n\n### 2019年1月17号添加\n---\n#### Hawstein(北京) - [Github](https://github.com/hawstein), [博客](http://www.hawstein.com/)\n* :white_check_mark: [AlgoCasts](https://algocasts.io)：简明、轻松、易懂的算法教学视频 - [更多介绍](http://www.hawstein.com/posts/algocasts-intro.html)\n\n### 2019年1月14号添加\n---\n#### Cat.1&hileix(HuZhou University&上海) - [Github](https://github.com/import-yuefeng)\n* :white_check_mark: [Super-inspire](https://github.com/super-inspire/super-inspire-end)：在不到30秒内得到一个干净的开箱即用的临时Linux系统 - [更多介绍](https://github.com/super-inspire/super-inspire-end)\n\n<!--\n### 2018年12月28号添加\n---\n#### nwsuafzq(北京) - [Github](https://github.com/nwsuafzq/duya_doodle)， [blog](http://blog.nwafulive.cn)\n* 🕗 [小度涂鸦](https://github.com/nwsuafzq/duya_doodle)：安卓版的涂鸦软件\n-->\n### 2018年12月25号添加\n---\n#### WangYuLue(Shanghai) - [Github](https://github.com/WangYuLue/image-conversion)\n* :x: [image-conversion](http://www.wangyulue.com/assets/image-comversion/example/index.html)：在线图片压缩，可指定图片大小压缩图片 - [更多介绍](http://www.wangyulue.com/2018/12/20/JS%E4%B8%AD%E9%80%9A%E8%BF%87%E6%8C%87%E5%AE%9A%E5%A4%A7%E5%B0%8F%E6%9D%A5%E5%8E%8B%E7%BC%A9%E5%9B%BE%E7%89%87/#more)\n\n\n### 2018年12月20号 & 21号添加\n---\n#### Alex Cui(上海) - [Github](https://github.com/AlexJason/Zilch-Editor), [博客](https://alexcui.blog.luogu.org/)\n* :clock8: [Zilch Editor](https://github.com/AlexJason/Zilch-Editor)：使用 C++ 开发的 Scratch 编辑器(少儿编程工具) - [更多介绍](https://alexcui.blog.luogu.org/why-to-develop-ze)\n\n#### Minsc (北京) - [Github](https://github.com/circleapps/sourceplayer)\n* :white_check_mark: [Source Player](https://circleapps.co)：为英语学习者设计的视频播放器 - [更多介绍](https://www.zhihu.com/question/21430286/answer/540663876)\n\n### 2018年12月5号添加\n---\n#### HeiKki(Beijing) - [Github](https://github.com/SherlockQi)\n* :white_check_mark: [WeAre](https://itunes.apple.com/cn/app/weare/id1304227680?mt=8)：AR 相册 (iOS 开源 App) - [更多介绍](https://github.com/SherlockQi/HeavenMemoirs)\n\n#### Mervyn Chou(Wuhan) - [Github](https://github.com/zoumorn)\n* :x: [永恒之墙](https://eternitywall.cn)：在一堵永恒之墙（比特币主链）上的永恒留言 - [更多介绍](https://eternitywall.cn)\n\n\n\n### 2018年11月4号添加\n---\n#### kezhenxu94 - [GitHub](https://github.com/kezhenxu94)\n* :white_check_mark: [Mini GitHub](https://user-images.githubusercontent.com/15965696/47959988-d2864d80-e02c-11e8-8c39-dac879bad3d6.jpg)：一个全功能的 GitHub 小程序 - [更多介绍](https://github.com/kezhenxu94/mini-github)\n\n### 2018年10月23号添加\n---\n#### zllz5230 - [GitHub](https://github.com/zllz5230)\n* :x: [微信公众号导航](http://wx.dreamthere.com)：推荐优质的微信公众号和文章 - [更多介绍](http://wx.dreamthere.com)\n\n### 2018年10月11号添加\n---\n#### itning - [Github](https://github.com/itning), [博客](https://blog.itning.top)\n* :x: [云舒课表](https://www.coolapk.com/apk/top.itning.yunshuclassschedule)：遵循 Material Design 的课程表APP，包含课程提醒，上课自动静音等实用功能 - [更多介绍](https://github.com/itning/YunShuClassSchedule)\n\n### 2018年10月8号添加\n---\n#### kwf2030 - [Github](https://github.com/kwf2030)\n* :white_check_mark: [HiPrice](https://github.com/kwf2030/hiprice-chatbot)：用微信机器人（个人号）实现的商品涨价/降价提醒服务，支持主流电商平台。快来看看你想要的商品双十一是不是先涨价再降价。\n\n### 2018年9月28号添加\n---\n#### Yaou - [GitHub](https://github.com/Yaou)\n* :white_check_mark: [今日装](https://itunes.apple.com/cn/app/jin-ri-zhuang-yi-chu-guan/id983491903)：面向女性的衣橱管理应用 - [更多介绍](https://ootd.cn)\n\n### 2018年9月13号 & 14号添加\n---\n#### okjaketo - [GitHub](https://github.com/okjaketo)\n* :white_check_mark: [行动日](https://itunes.apple.com/cn/app/tododay-reminders-tasks-list/id1409990634?mt=8)：以\"日\"为基础，包含\"不办清单\"的，助您效率提升的待办事项清单类应用\n\n#### itisyang - [GitHub](https://github.com/itisyang), [博客](https://blog.csdn.net/itisyang)\n* :white_check_mark: [playerdemo](https://github.com/itisyang/playerdemo)：视频播放器，开源版 potplayer ，用于学习和交流\n\n### 2018年9月11号添加\n---\n####  feisuzhu - [GitHub](https://github.com/feisuzhu)\n* :white_check_mark: [东方符斗祭](http://thbattle.net)：Python 写的卡牌游戏，规则基本是三国杀的规则，有修改，人物设定取自东方 Project，技能设定大多是自己做的，少量复刻原版三国杀 - [更多介绍](https://github.com/feisuzhu/thbattle)\n\n### 2018年9月9号添加\n---\n#### yhlben - [GitHub](https://github.com/yhlben)\n* :x: [前端导航](https://yhlben.github.io/front-end-navigation/)：简洁直观的前端导航 - [更多介绍](https://github.com/yhlben/front-end-navigation)\n\n### 2018年8月30号添加\n---\n#### 安望云海 - [GitHub](https://github.com/w3cay), [博客](http://w3cay.com/)\n* :white_check_mark: [时光里程表小程序](http://w3cay.com/post/1be3071d.html)：重要时间记录小程序 - [更多介绍](http://w3cay.com/post/1be3071d.html)\n* :white_check_mark: [群名大全小程序](http://w3cay.com/post/e265e1ee.html)：各种霸气逗逼文艺微信群名聚集地 - [更多介绍](http://w3cay.com/post/e265e1ee.html)\n\n#### fateleak\n* :x: [OpenWebMonitor 网空网页监控器](http://openwebmonitor.netqon.com/)： 监控网页内特定区域变化（商品物价优惠、幼儿园报名通知、Steam游戏打折等）含 Email 通知 - [更多介绍](https://github.com/fateleak/openwebmonitor)\n\n### 2018年8月16号添加\n---\n#### emenwin\n* :white_check_mark: [谜语猜](http://miyucai.com)：猜谜语大全 侦探智力谜题[【iOS 版】](https://itunes.apple.com/cn/app/id683944940?mt=8) [【Android 版】](http://a.app.qq.com/o/simple.jsp?pkgname=com.cnspirit.android.miyucai) - [更多介绍](http://miyucai.com/about)\n\n\n### 2018年8月13号添加\n---\n#### fateleak - [GitHub](https://github.com/fateleak)\n* :x: [irreader](http://irreader.netqon.com/)：网空RSS阅读器\n\n### 2018年7月30号添加\n---\n#### Thomas94\n* :white_check_mark: [火星首页](https://www.goto-mars.com/)：漂亮的首页，以及完全可自定义的导航站点和云端收藏夹服务 - [更多介绍](https://www.goto-mars.com/static/about_us.html)\n\n### 2018年7月26号添加\n---\n#### Jack Yip\n* :x: [Killcoding](http://killcoding.com/)：无需编程开发 Web 应用程序\n\n### 2018年7月10号添加\n---\n\n#### Wang Lingsong - [Github](https://github.com/wanglingsong)\n* :x: [ERC20 Token Exchagne](https://wanglingsong.github.io/ERC20ExchangeReactUI/)：基于以太坊的去中心化 ERC20 代币交易所应用（需先安装 Chrome 扩展，请看更多介绍） - [更多介绍](https://github.com/wanglingsong/ERC20Exchange)\n\n#### 易墨 - [Github](https://github.com/yimogit/), [博客](https://www.yimo.link/)\n- :white_check_mark: [metools](https://tools.yimo.link/#/home)：工具集（base64转码，markdown转HTML，二维码生成和识别，数字转人民币大写（壹佰贰拾叁元整）等） - [更多介绍](https://github.com/yimogit/metools-plugin)\n\n### 2018年7月6号添加\n---\n\n#### 王文杰 - [Github](https://github.com/wangwenjie1314), [博客](http://xiab.club/)\n* :x: [图文进化论](http://mp.millionshow.cn/)：记录美好图文（微信访问）\n\n#### 魏焜榕 - [Github](https://github.com/SeriaWei), [博客](http://www.cnblogs.com/seriawei/)\n* :white_check_mark: [ZKEACMS](http://www.zkea.net/zkeacms/zkeacmscore)：可视化设计CMS，在线编辑网站 - [更多介绍](https://github.com/SeriaWei/ZKEACMS.Core)\n\n#### huihut - [Github](https://github.com/huihut), [博客](https://blog.huihut.com/)\n* :white_check_mark: [Facemoji 废萌](https://play.google.com/store/apps/details?id=com.huihut.facemoji)：一个可以模仿你的表情的语音聊天机器人- [更多介绍](https://blog.huihut.com/2018/02/08/Facemoji1/), [更多介绍2](https://github.com/huihut/Facemoji)\n\n#### cjztool - [Github](https://github.com/cjztool), [博客](http://cjz010.iteye.com/)\n* :white_check_mark: [中医方歌](https://app.mi.com/details?id=com.cjz.PrescriptionPoem)：中医《方剂学》学习工具\n\n### 2018年7月4号添加\n---\n\n#### Bill - [Github](https://github.com/kkxlkkxllb)\n* :x: [手绘微课Pro](https://17up.org/)：语音及笔迹录制工具，简单在线制作微课 - [更多介绍](https://kkxlkkxllb.github.io/org17up/)\n* :white_check_mark: [手绘微课Pro 小程序](https://minapp.com/miniapp/2554/)：语音+手写笔迹+图片+视频制作微课，可导出 mp4\n\n### 2018年6月30号添加\n---\n\n#### alphardex - [Github](https://github.com/alphardex)\n* :x: [techattic](https://techattic.herokuapp.com/)：聚集了许多 IT 技术博客的网站 - [更多介绍](http://techattic.herokuapp.com/about)\n\n### 2018年6月26号添加\n---\n#### enzeberg (上海) - [GitHub](https://github.com/enzeberg)\n* :white_check_mark: [铜钟音乐](https://tonzhon.com)：将QQ音乐、网易云音乐和酷我音乐上的歌添加到一个列表来播放！- [更多介绍](https://creatorsdaily.com/e4bd2175-4cb0-4061-86b8-7f419767b615)\n\n#### linroid - [GitHub](https://github.com/linroid), [博客](https://linroid.com/about)\n* :x: [Z直播](https://www.coolapk.com/apk/com.linroid.zlive)：一个 APP 看多个平台的直播，流畅、纯净、无广告\n* :x: [看应用](https://www.coolapk.com/apk/com.linroid.viewit)：可以找到应用缓存的所有图片，可以很方便地提取资源 - [更多介绍](https://github.com/linroid/ViewIt)\n\n#### xiaobaiso - [GitHub](https://github.com/xiaobaiso), [博客](https://xiaobaiso.github.io/)\n* :x: [临时邮](https://itunes.apple.com/cn/app/%E4%B8%B4%E6%97%B6%E9%82%AE-%E5%8D%81%E5%88%86%E9%92%9F%E9%82%AE%E7%AE%B1/id1342693449?mt=8)：一键生成多个临时邮箱地址 - [更多介绍](https://xiaobaiso.github.io/tempmail/)\n* :x: [下载视频小助手(微信公众号)](https://xiaobaiso.github.io/zhihudoc/)：下载知乎视频\n\n### 2018年6月21号添加\n---\n\n#### 织网哥 - [GitHub](https://github.com/mclxly)\n* :x: [小视频神器](https://video2x.cn)：微信小程序，用于视频编辑，可添加字幕/配音，也可倒播/消音/改尺寸，输出MP4/GIF；还可拼接视频/剪辑视频。\n\n### 2018年6月8号添加\n---\n\n#### dd - [GitHub](https://github.com/dpy1123)\n* :x: [DDMUG](https://promotion.devgo.top/ddmug/)：音游 poc，包含编辑器\n\n#### ghui - [GitHub](https://github.com/ghuiii), [博客](http://ghui.me)\n* :x: [V2er](https://www.coolapk.com/apk/me.ghui.v2er.free)：好用的 V2EX 客户端 - [更多介绍](https://ghui.me/post/2017/09/v2er-free-version/)\n\n### 2018年6月7号添加\n---\n#### 小芋头君 - [知乎](https://www.zhihu.com/people/li-shou-xin), [GitHub](https://github.com/xinyu198736)\n* :x: [颜文字输入法](https://itunes.apple.com/cn/app/yan-wen-zi-shu-ru-fa-zui-qiang/id866753915?mt=8)：卖萌输入法，可能是最早一批正儿八经做这个的，几年前就卖了，现在用户目测百万级别\n* :white_check_mark: [喵老师绘本故事](https://itunes.apple.com/cn/app/er-shi-yi-dian-shui-qian-gu-shi/id998079819)：和幼师老婆一起做的讲故事 app，内容都是媳妇录的，已经 200 多期了（最开始叫 二十一点睡前故事）\n\n### 2018年6月6号添加\n---\n#### 谢杨\n* :white_check_mark: [BufPay.com](https://bufpay.com)：独立开发者个人收款平台（无需公司资质，免签约）\n\n\n### 2018年5月29号添加\n---\n####  waynecz - [GitHub](https://github.com/waynecz/dadda-translate-crx)\n* :white_check_mark: [达达划词翻译](https://chrome.google.com/webstore/detail/%E8%BE%BE%E8%BE%BE%E5%88%92%E8%AF%8D%E7%BF%BB%E8%AF%91/cajhcjfcodjoalmhjekljnfkgjlkeajl)：好看的划词翻译插件 - [更多介绍](https://github.com/waynecz/dadda-translate-crx)\n\n### 2018年5月22号 & 23号 & 24号添加\n---\n\n#### mhkz - [GitHub](https://github.com/mhkz)\n* :x: [全库网](https://www.iquanku.com)：分享一些技术内容和经验\n\n#### Nutt\n* :x: [坚果电影](http://nutts.tv/)：为你找到下一部最爱的电影(原: 快影盒子)\n\n#### feilong - [GitHub](https://github.com/zfl420)\n* :x: [TestFlight.top](https://testflight.top)：60 秒制作 iOS 内测 App 分发页，用户直接下载测试\n\n### 2018年5月20号添加\n---\n\n#### kezhenxu94 - [Github](https://github.com/kezhenxu94/), [博客](http://kezhenxu94.me)\n* :white_check_mark: [租房聚合分析](https://github.com/kezhenxu94/house-renting)：租房信息聚合分析，目前聚合了 58 同城，豆瓣，链家 的上百个城市地区，可以只扒取感兴趣的城市\n\n### 2018年5月18号添加\n---\n\n#### 李国宝 - [Github](https://github.com/liguobao)\n* :x: [地图找租房](https://woyaozufang.live/)：房源爬虫 + 高德地图强力驱动，迅速找到合适房源 - [更多介绍](https://github.com/liguobao/58HouseSearch/blob/master/%E4%BD%BF%E7%94%A8%E6%95%99%E7%A8%8B.md)\n\n### 2018年5月16号添加\n---\n\n#### BeckTabs\n* :white_check_mark: [BeckTabs (iOS)](https://itunes.apple.com/cn/app/becktabs/id1340423767)：专业的乐谱管理软件\n\n\n### 2018年5月13号添加\n---\n\n#### che3vinci - [Github](https://github.com/che3vinci)\n* :x: [bullmind](https://www.bullmind.com)：像使用笔和纸一样的整理思维\n\n#### AlvinZhu - [GitHub](https://github.com/gbammc), [博客](http://alvinzhu.me/)\n* :white_check_mark: [Thor](https://github.com/gbammc/Thor)：快速打开或切换 Mac 应用\n\n#### iHTCboy - [GitHub](https://github.com/iHTCboy), [博客](https://iHTCboy.com)\n* :white_check_mark: [密记 iOS版](https://itunes.apple.com/cn/app/mi-ji-yu-zhong-bu-tong-ji/id925021570?l=zh&mt=8)：SQLite 实现的简单笔记和备份应用 - [更多介绍](https://github.com/iHTCboy/SecurityNote)\n* :white_check_mark: [桂林理工大学 - 校园通](https://itunes.apple.com/cn/app/gui-lin-li-gong-da-xue-xiao/id968615456?l=en&mt=8)：新闻模块抓取学校网页解释 HTML，社交仿博客 - [更多介绍](https://github.com/iHTCboy/CampusOfGLUT)\n* :white_check_mark: [桂林理工大学 - 云地图](https://itunes.apple.com/cn/app/gui-lin-li-gong-da-xue-yun/id954359041?mt=8)：基于高德云图API开发的地图应用 - [更多介绍](https://github.com/iHTCboy/GLUTCloud)\n\n### 2018年5月9号添加\n---\n#### runningcheese - [GitHub](https://github.com/runningcheese)\n* :x: [RunningCheese Firefox](https://firefox.runningcheese.com/)：优雅强大的定制版 Firefox 浏览器，简洁且高效 - [更多介绍](https://github.com/runningcheese/RunningCheese-Firefox)\n\n### 2018年5月2号添加\n---\n\n#### pwxc - [GitHub](https://github.com/pwxc/)\n* :white_check_mark: [lrcEdit](https://www.coolapk.com/apk/185032)：可能是 Android 端唯一的歌词编辑器 - [更多介绍](https://github.com/pwxc/LrcEdit-Android)\n\n#### Venus - [GitHub](https://github.com/bbbbx), [博客](http://blog.venusworld.cn)\n* :x: [小当家](http://smallmenu.venusworld.cn:3000)：在线搜索食谱的 Web 应用\n\n### 2018年4月27号添加\n---\n\n#### R0uter - [GitHub](https://github.com/R0uter), [博客](https://www.logcg.com/)\n* :white_check_mark: [落格输入法](https://im.logcg.com/loginput)：iOS 平台中文双拼码表输入法\n* :white_check_mark: [落格报时喵](https://im.logcg.com/hourlymeow)：iOS 整点半点报时\n\n\n### 2018年4月25号添加\n---\n\n#### Timmy - [GitHub](https://github.com/zhu327), [博客](https://zhu327.github.io/)\n* :white_check_mark: [ifwechat](https://github.com/zhu327/ifwechat)：用微信触发 ifttt, 连接微信与 ifttt 的公众号\n\n\n### 2018年4月23号 & 24号添加\n---\n\n#### haxck - [GitHub](https://github.com/haxck), [博客](http://haxck.com)\n* :x: [NightMate](https://haxck.com/portfolio/src/assets/nmQr.jpg)：可能是史上最省心、最优雅的助眠微信小程序\n\n#### qknow - [GitHub](https://github.com/503945930)\n* :x: [NEO全资产区块浏览器](https://state.otcgo.cn)：NEO 全资产区块浏览器 - [更多介绍](https://github.com/OTCGO/state-browser)\n\n### 2018年4月18号添加\n---\n#### qskane - [GitHub](https://github.com/qskane)\n* :x: [旅图网](https://www.imgtrip.com)：电脑壁纸/图片网站 - [更多介绍](https://www.imgtrip.com/a/112)\n\n### 2018年4月15号添加\n---\n\n#### ddxgz - [GitHub](https://github.com/ddxgz)\n* :x: [LinkedInfo](https://www.linkedinfo.co)：链接各类优秀技术文章 - [更多介绍](https://www.linkedinfo.co/about)\n\n### 2018年4月11号 & 12号添加\n---\n\n#### FengYQ - [GitHub](https://github.com/FinchFeng?tab=repositories)\n* :x: [计划表](https://itunes.apple.com/cn/app/计划单/id1341198801?mt=8)：以简洁高效为目的的计划器 - [更多介绍](https://github.com/FinchFeng/MyPlanList)\n\n### 2018年4月3号 & 4号添加\n---\n\n#### Derek-X-Wang - [GitHub](https://github.com/Derek-X-Wang)\n* :white_check_mark: [attack-on-titans](https://github.com/Derek-X-Wang/attack-on-titans)：大公司电话面试模拟器 - [更多介绍](https://github.com/Derek-X-Wang/attack-on-titans/blob/master/README-zh.md)\n\n#### KrisBobLea\n* :white_check_mark: [米发 MFPad](http://www.mfpad.com)：专注于域名转发的服务商，维护了7年的平台，提供比 DNSPod、腾讯云更稳定的域名转发服务\n\n### 2018年4月1号 & 2号添加\n---\n\n#### markmiao - [GitHub](https://github.com/mxdios), [博客](http://markmiao.com/)\n* :white_check_mark: [排班](https://itunes.apple.com/cn/app/id1221228242?mt=8)：以日历为基础，设置早午晚夜班的iOS客户端 - [更多介绍](http://markmiao.com/2017/04/05/%E6%8E%92%E7%8F%AD/)\n* :x: [速记](https://itunes.apple.com/cn/app/id1263819789?mt=12)：工具栏快速记录文本，记录剪切板历史数据的macOS应用 - [更多介绍](http://markmiao.com/2017/07/26/stenonote/)\n\n#### Victoria Raymond - [GitHub](https://github.com/v2ray), [博客](https://steemit.com/@v2ray)\n* :white_check_mark: [V2Ray](https://github.com/v2ray/v2ray-core/)：网络代理工具，帮助你打造专属的定制网络体系 - [更多介绍](https://www.v2ray.com/)\n\n#### 米小饭 - [Github](https://github.com/SoyaLeaf)\n* :white_check_mark: [单纯的就是个日历](https://www.coolapk.com/apk/top.soyask.calendarii)：单纯的只是个日历，附带简单的记事功能\n\n#### Steve Jrong - [Github](https://github.com/SteveJrong), [博客](https://www.stevejrong.top/)\n* :x: [Steve Jrong's Blog UWP](https://www.stevejrong.top/download)：查看博主技术分享的 UWP 应用 - [更多介绍](https://www.microsoft.com/zh-cn/store/p/steve-jrongs-blog-uwp/9nblggh43jg6)\n\n### 2018年3月31号添加\n---\n\n####  echosoar - [Github](https://github.com/echosoar), [博客](https://iam.gy)\n* :white_check_mark: [Code Reader](https://cr.js.org)：在移动设备上舒服地阅读和批注 Github 代码\n\n#### xiaohulu - [Github](https://github.com/xiaohulu/)\n* :x: [豆腐丁](https://doufuding.com/)：学习资料整理网站，可编写技术文档和翻译 GitHub 网站的文档项目\n\n#### 张小刚哟 - [微博](https://weibo.com/u/3127372955)\n* :x: [WoodPecker](http://www.woodpeck.cn/cnindex)：让你在 Mac 上轻松、高效调试 iOS 应用 - [更多介绍](https://sspai.com/post/43527)\n* :x: [App 计划](https://itunes.apple.com/cn/app/app%E8%AE%A1%E5%88%92/id1158663523?mt=8)：定时打开其他 App 的 iOS 应用 - [更多介绍](https://sspai.com/post/43594)\n\n#### sobbingman\n- :x: [Vue 资源精选](http://vue.awesometiny.com/)：Vue 精选组件分享, 手工精选出一百来个最优秀的组件库/独立组件\n\n#### aisnote - [Github](https://github.com/aisnote)\n* :white_check_mark: [PicZoomer](http://aisnote.com/2010/12/14/%E6%89%B9%E9%87%8F%E7%85%A7%E7%89%87%E7%BC%A9%E5%B0%8F%E5%B7%A5%E5%85%B7-%E6%97%A0%E9%9C%80%E4%BB%BB%E4%BD%95%E8%AE%BE%E7%BD%AE-%E5%82%BB%E7%93%9C%E6%93%8D%E4%BD%9C/)：批量照片缩小工具, 无需任何设置, 傻瓜操作\n\n### 2018年3月29号 & 30号添加\n---\n\n#### toryzen - [Github](https://github.com/toryzen), [博客](http://www.toryzen.cn/)\n* :white_check_mark: [SmartPing](http://smartping.org/)：开源、高效、便捷的网络质量监控神器！\n\n#### djmpink - [Github](https://github.com/djmpink/TailLog), [博客](http://7player.cn/)\n* :x: [TailLog](http://taillog.cn/)：简单易用的实时日志管理工具 - [更多介绍](http://taillog.cn/)\n\n#### Viggo - [博客](http://viggoz.com/)\n* :white_check_mark: [Webstack](http://webstack.cc)：专注于收集国内外优秀的设计类网站 - [更多介绍](http://webstack.cc/cn/about.html)\n\n#### lizhi - [GitHub](https://github.com/lizhi), [博客](http://www.yinlula.com)\n* :white_check_mark: [引路啦](http://www.yinlula.com)：有意思的分享\n\n#### Shane Qi - [GitHub](https://github.com/shaneqi), [博客](https://blog.shaneqi.com)\n* :clock8: [Eastwatch](https://eastwatchapp.com)：可能是 iOS 平台上最美的、交互最友好的追剧 App\n\n### 2018年3月27号 & 28号添加\n---\n\n#### 痕迹 - [GitHub](https://github.com/lijy91), [博客](https://www.jianshu.com/u/7f33d5b97f55)\n* :x: [佚览](https://itunes.apple.com/cn/app/%E4%BD%9A%E8%A7%88/id1358635224?mt=8)：基于 iOS 系统扩展的支持多种文件格式的预览应用 - [更多介绍](https://yilan.thecode.me)\n\n#### cg200776\n* :x: [小黄条](http://www.6fcsj.com)：能嵌入 Windows 桌面的跨平台 Todolist，手机、PC 双向同步\n\n#### 12points - [GitHub](https://github.com/yelluo/12points), [博客](http://yalluo.duapp.com/)\n* :white_check_mark: [6/12/24点计算](https://github.com/yelluo/12points)：少儿益智练习，三个数得到6或12，或4个数得到24，可选题目难度\n\n#### mzlogin - [GitHub](https://github.com/mzlogin)，[博客](http://mazhuang.org)\n* :white_check_mark: [guanggoo-android](https://github.com/mzlogin/guanggoo-android)：光谷社区第三方 Android 客户端\n\n#### Hongui - [Github](https://github.com/hongui)\n* :clock8: [快传](https://github.com/hongui/FastAir)：用于短距离内点对点文件传输和聊天，无需网络 - [更多介绍](http://sj.qq.com/myapp/detail.htm?apkName=com.mob.lee.fastair)\n\n### 2018年3月25号 & 26号添加\n---\n#### Jianqing - [GitHub](https://github.com/pjq), [博客](https://pjq.me)\n* :clock8: [Smart Car on Raspberry Pi](https://github.com/pjq/rpi)：用来远程遛猫, 家居监控的智能小车\n* :x: [Weather Station on Raspberry Pi](http://rpi.pjq.me/)：实时空气质量气象站 - [更多介绍](https://github.com/pjq/rpi#weather-station-demo)\n\n#### Fengchang - [GitHub](https://github.com/fengchangfight)\n* :white_check_mark: [家谱海](http://www.familytreesea.com)：可视化数字家谱，记录管理家庭亲戚关系以及历史人物关系建模\n\n#### lzx2005 - [GitHub](https://github.com/lzx2005), [博客](https://lzx2005.com)\n* :white_check_mark: [今天吃什么(WhatToEat)](https://github.com/lzx2005/WhatToEat)：治疗吃货选择恐惧症的微信小程序 - [更多介绍](https://github.com/lzx2005/WhatToEat)\n\n#### Toy - [GitHub](https://github.com/xuxiaodong)，[博客](https://linuxtoy.org)\n* :x: [Self-hosted Server](https://selfhostedserver.com)：自动化架设服务器，支持 AWS/GCE/Azure/DO/Linode/Vultr\n\n#### zhangjh - [GitHub](https://github.com/zhangjh), [博客](http://zhangjh.me)\n* :x: [藏经阁](https://favlink.cn)：完全定制化的个人网址收藏 - [更多介绍](https://github.com/zhangjh/favLinksAdvise/blob/master/About.md)\n\n#### Tang - [GitHub](https://github.com/tangqi92), [微博](http://weibo.com/qiktang)\n* :x: [Driki](https://itunes.apple.com/cn/app/id1238020177?mt=8)：在同质化的 Dribbble 客户端里做出差异化 - [更多介绍](http://drikiapp.github.io/)\n\n### 2018年3月23号添加\n---\n\n#### AaronLiu - [GitHub](https://github.com/HFO4), [博客](https://aoaoao.me)\n* :white_check_mark: [Cloudreve](https://cloudreve.org/)：支持多家云存储的云盘系统 - [更多介绍](https://github.com/HFO4/Cloudreve)\n\n#### Damon - [GitHub](https://github.com/chaoming56), [博客](http://selfcoding.cn)\n* :x: [ToFun](https://tofun.selfcoding.cn/)：极简匿名便签吐槽板&便签板 - [更多介绍](https://github.com/chaoming56/react_ToFun)\n\n#### luckytianyiyan - [GitHub](https://github.com/luckytianyiyan), [博客](https://tyy.sh/)\n* :white_check_mark: [识墨笔记](https://itunes.apple.com/us/app/id1222111073)：OCR 读书笔记工具, 支持导入 Kindle 笔记 - [更多介绍](https://sspai.com/post/40639)\n* :x: [TyLauncher](http://www.tylauncher.com/)：文件 / 程序 快捷启动工具 - [更多介绍](https://github.com/luckytianyiyan/TyLauncher)\n\n### 2018年3月22号添加\n---\n\n#### HansChen - [GitHub](https://github.com/shensky711), [博客](http://blog.hanschen.site/)\n* :clock8: [Pretty-Zhihu](https://github.com/shensky711/Pretty-Zhihu)：针对知乎的看图神器，你懂的\n* :clock8: [Run-With-You](https://github.com/shensky711/Run-With-You)：双人跑步应用，计步 & 双人跑步联动功能\n\n#### Roogle - [GitHub](https://github.com/Moidea), [博客](https://www.moidea.info)\n* :white_check_mark: [你好污啊](https://www.nihaowua.com)：一句话撩妹撩汉污句子\n\n#### miaowing - [GitHub](https://github.com/miaowing), [博客](https://zfeng.net)\n* :x: [i5SING](http://i5sing.com)：中国原创音乐基地 5sing 第三方桌面客户端\n\n#### ImbaQ - [GitHub](https://github.com/ImbaQ), [博客](http://www.wankeyun.cc/forum-12.htm)\n* :white_check_mark: [开源链克口袋 - MyLinkToken](http://www.wankeyun.cc/thread-182.htm)：第一个可实现转账功能的第三方开源链克钱包 - [更多介绍](http://www.wankeyun.cc/forum-12.htm)\n\n#### haijiao1945 - [GitHub](https://github.com/haijiao1945), [博客](http://www.xboxfan.com)\n* :white_check_mark: [Xbox比价助手](http://www.xboxfan.com)：XboxOne 游戏机的跨服比价微信小程序\n\n#### SVNBucket - [GitHub](https://github.com/winiex)\n* :white_check_mark: [SVNBucket](http://svn.gzyunke.cn/)：免费 SVN 仓库，自认为是市面最好的，不限私有数量，不限成员数量\n\n#### 糖伴西红柿 - [GitHub](https://github.com/gaowhen)\n* :x: [viewpre.com](https://viewpre.com/)：Kindle 书摘管理\n\n#### aizuyan - [GitHub](https://github.com/aizuyan)\n* :white_check_mark: [GramTools](https://ritoyantools.github.io/)：跨平台工具收集（目前收集了json、diff工具）\n\n### 2018年3月21号添加\n---\n\n#### Airing - [GitHub](https://github.com/airingursb), [博客](http://ursb.me)\n- :white_check_mark: [四时](https://itunes.apple.com/us/app/%E5%9B%9B%E6%97%B6/id1272513774?l=zh&ls=1&mt=8)：闪亮亮的天气 App - [更多介绍](https://github.com/airingursb/4times-front-end)\n- :white_check_mark: [双生](https://github.com/oh-bear/2life)：遇见另一半的美好（共享日记）\n\n#### Arczzir - [GitHub](https://github.com/arczzir)\n* :white_check_mark: [Jed](https://itunes.apple.com/cn/app/jed/id1234853584)：macOS 上的 JSON 文件编辑器 - [更多介绍](https://www.bilibili.com/video/av10147282/)\n* :white_check_mark: [THZ](https://itunes.apple.com/cn/app/thz/id1353765033)：「收藏心仪的地点 ，管理得井井有条」限中国杭州\n\n#### Drinking - [GitHub](https://github.com/drinking), [博客](http://drinking.github.io/)\n* :white_check_mark: [饭起](https://itunes.apple.com/cn/app/%E9%A5%AD%E8%B5%B7-%E5%85%B3%E4%BA%8E%E9%A3%9F%E7%89%A9%E7%9A%84%E7%88%B1%E4%B8%8E%E6%95%85%E4%BA%8B/id1209331941?mt=8)：关于食物的爱与故事  - [更多介绍](http://fancymeet.com/)\n\n#### Yuuta - [GitHub](https://github.com/Trumeet), [网站](https://yuuta.moe)\n* :x: [Dir](https://coolapk.com/apk/kh.android.dir)：简单美观的 Android 垃圾清理工具，支持防止文件再生 - [更多介绍](https://dir.yuuta.moe/zh/)\n\n#### 曦莫琅 - [GitHub](https://github.com/ximolang), [博客](http://www.txliang.com/)\n* :x: [诗说社](http://shishuo.wesnice.com/)：文青、情怀人群的聚集地，原创诗词的发布平台\n\n#### ruzhan123 - [GitHub](https://github.com/ruzhan123)\n* :x: [Awaker](https://www.coolapk.com/apk/155953)：科幻，地理阅读杂志的 Android 应用 - [更多介绍](https://github.com/ruzhan123/awaker)\n\n#### cwang22 - [GitHub](https://github.com/cwang22), [博客](https://seewang.me)\n* :white_check_mark: [Buy All Steam Games](http://steam.seewang.me)：买下所有 Steam 游戏要多少钱？\n\n#### santa - [GitHub](https://github.com/santa-cat)\n* :x: [一天](https://fir.im/oneday)：24小时结识朋友的社交应用 (Android、iOS)\n\n#### Caij - [GitHub](https://github.com/Caij)\n* :x: [EMore](https://www.coolapk.com/apk/com.caij.emore)：轻量简单的第三方微博客户端\n\n\n### 2018年3月20号添加\n---\n\n#### fujianjin6471\n* :white_check_mark: [Memory Helper](https://itunes.apple.com/cn/app/memory-helper-zi-ding-yi-nei/id1113262919?l=en&mt=8)：科学复习，真正记住知识\n\n#### DeweyReed - [GitHub](https://github.com/DeweyReed)\n* :white_check_mark: [剪贴板守护](https://github.com/DeweyReed/ClipboardCleaner)：使用多种方式查看并清空剪贴板的开源 Android 应用\n* :x: [权限图书馆](https://www.coolapk.com/apk/162565)：查看本设备的应用和安装包的权限的 Android 应用\n* :x: [循环计时器](https://www.coolapk.com/apk/118705)：一次设置N个计时器，自动计时、自动通知的 Android 应用\n* :white_check_mark: [计时机器](https://www.coolapk.com/apk/177033)：循环计时器加强版，更多的通知方式和计划任务\n\n#### HyanCat - [GitHub](https://github.com/HyanCat), [博客](https://hyancat.com)\n* :white_check_mark: [若古](https://www.ruogoo.cn)： 古风文学兴趣交流社区（网站和 App）- [更多介绍](https://www.ruogoo.cn/about)\n\n#### luowei - [GitHub](https://github.com/luowei)\n* :white_check_mark: [万能输入法](http://app.wodedata.com)：支持拼音、五笔、笔画、手写、特殊符号及动画表情的输入法\n* :white_check_mark: [我的浏览器](http://app.wodedata.com/myapp/mybrowser.html)：支持截图导出 PDF 的可个性化的自定义浏览器 - [更多介绍](https://github.com/luowei/MyBrowser)\n* :white_check_mark: [照片DIY](http://app.wodedata.com/myapp/photodiy.html)：可以对图片加滤镜、各种涂鸭、打码塞克、裁剪的 APP - [更多介绍](https://github.com/luowei/PhotoDIY)\n* :white_check_mark: [斗图王](http://app.wodedata.com/myapp/gifemoji.html)：一个 GIF 斗图动画表情制作和搜索 APP，兼具斗图浏览器与斗图编辑器的功能\n* :white_check_mark: [美图王](http://app.wodedata.com/myapp/mywallpaper.html)：高清的意向图和壁纸图片应用\n* :white_check_mark: [Mark记事本](http://app.wodedata.com/myapp/mymarkdown.html)：Markdown 记事本，支持从文本图片导入及导出 PDF\n* :white_check_mark: [最强二维码](http://app.wodedata.com/myapp/qrcoderobot.html)：扫描二维码和生成自定义二维码的 App\n\n#### aderm - [GitHub](https://github.com/aderm)\n* :x: [如e定制](http://www.shangyuekeji.com)：个性化定制加工平台\n\n#### TKkk - [GitHub](https://github.com/TKkk-iOSer)\n* :white_check_mark: [WeChatPlugin-MacOS](https://github.com/TKkk-iOSer/WeChatPlugin-MacOS)：MacOS 微信小助手（可玩性很高，开源）\n\n#### maomao1996（茂茂） - [GitHub](https://github.com/maomao1996)\n* :x: [mmPlayer在线音乐播放器](http://music.mtnhao.com)：在线音乐播放器（基于Vue2）（PC） - [更多介绍](https://github.com/maomao1996/Vue-mmPlayer)\n\n#### genru - [GitHub](https://github.com/genru)\n* :x: [每日壹单](https://mryd.freeflarum.com)：每天推送10条最新外包兼职信息\n\n#### SpongeBobSun - [GitHub](https://github.com/SpongeBobSun/)\n* :white_check_mark: [Puff Password Manager](https://itunes.apple.com/cn/app/puff-password-manager-open-source-free/id1183663532?mt=8)：开源免费的离线密码管理器 - [更多介绍](https://puffopensource.github.io/)\n* :white_check_mark: [Prodigal Music Player](https://itunes.apple.com/cn/app/prodigal-music-player/id1231296263?mt=8)：复刻经典 iPod 的音乐播放器 - [更多介绍](http://spongebobsun.github.io/Prodigal/)\n\n#### Sing - [GitHub](https://github.com/asing1001), [博客](https://www.paddingleft.com)\n* :white_check_mark: [MovieRater](https://www.mvrater.com)：集合Yahoo, Ptt, IMDB評分, 方便選片 - [更多介绍](https://github.com/Asing1001/movieRater.React)\n\n#### Chars - [GitHub](https://github.com/charsdavy), [博客](http://chars.tech), [Twitter](https://twitter.com/charsdavy)\n* :white_check_mark: [日本语社区](https://itunes.apple.com/cn/app/id1184113889)：日语学习资源，整合各种文本、音频和视频学习资料\n* :white_check_mark: [今日账单](https://itunes.apple.com/cn/app/id1176787145)：帐单记录与数据分析，内含云备份功能，界面简洁清爽\n* :white_check_mark: [Piclip](https://itunes.apple.com/cn/app/id1188174656)：即兴想起的九宫格切图软件，当然还有六、四等宫格布局\n* :white_check_mark: [牛皮纸](https://itunes.apple.com/cn/app/id1346384976)： 阅读 GitHub 上 md 文档的工具，支持浏览远程 md 文档\n* :white_check_mark: [ImageHosting for Mac](https://github.com/charsdavy/ImageHosting)：七牛云图床上载工具 (开源)\n\n#### enzo-yang - [GitHub](https://github.com/enzo-yang)\n* :x: [集木](https://itunes.apple.com/cn/app/%E9%9B%86%E6%9C%A8/id1273031712?mt=8)：丰富的植物库以及拍照识别植物\n\n#### miliPolo - [GitHub](https://github.com/miliPolo), [简书](https://www.jianshu.com/u/e9f2e9d46877)\n* :x: [记忆碎片](https://itunes.apple.com/cn/app/%E8%AE%B0%E5%BF%86%E7%A2%8E%E7%89%87-%E7%94%A8ar%E6%97%B6%E9%97%B4%E6%B5%81%E8%AE%B0%E5%BD%95%E7%94%9F%E6%B4%BB%E7%82%B9%E6%BB%B4/id1340767017?l=zh&ls=1&mt=8)：AR创意短视频APP，基本功能完成，后续功能还在开发中\n* :clock8: [AR太阳系](https://github.com/miliPolo/ARSolarPlaySwift)：展示太阳系的运行\n\n#### xx19941215 - [GitHub](https://github.com/xx19941215)\n* :white_check_mark: [小时光倒数日](https://minapp.com/miniapp/2810/)：小时光倒数日，帮你铭记人生每一次的幸福时光\n\n#### JY - [GitHub](https://github.com/jy1989)\n* :x: [狗狗大全](https://play.google.com/store/apps/details?id=com.cjy.DogCollection)：展示狗狗特性、概述、性格等，Android App\n\n#### 钟颖 - [GitHub](https://github.com/cyanzhong/), [小专栏](https://xiaozhuanlan.com/devnotes), [微博](https://weibo.com/0x00eeee)\n\n- :white_check_mark: [JSBox](https://itunes.apple.com/cn/app/id1312014438)：用 JavaScript 实现原生小工具 - [更多介绍](https://sspai.com/post/42361)\n- :x: [TodayMind](https://itunes.apple.com/cn/app/id1207158665)：提醒事项扩展小组件 - [更多介绍](https://sspai.com/post/37669)\n- :x: [小历](https://itunes.apple.com/cn/app/id1031088612)：日历扩展小组件 - [更多介绍](https://sspai.com/post/35440)\n- :white_check_mark: [小历 for Mac](https://itunes.apple.com/cn/app/id1114272557)：日历扩展小组件\n- :x: [Pin](https://itunes.apple.com/cn/app/id1039643846)：剪贴板扩展工具，App Store 2016 年度应用 - [更多介绍](https://sspai.com/post/36484)\n- :x: [Pin for Mac](https://itunes.apple.com/cn/app/id1092997957)：剪贴板扩展工具\n\n#### 张嘉夫 - [GitHub](https://github.com/josephchang10), [微博](https://weibo.com/2949394297)\n* :white_check_mark: [生词本](https://itunes.apple.com/cn/app/生词本-智能背诵提醒/id1120027237?mt=8)：生词本 - 智能背诵提醒，让你记住所有查过的单词 - [更多介绍](https://itunes.apple.com/cn/app/生词本-智能背诵提醒/id1120027237?mt=8)\n\n#### nicejade - [GitHub](https://github.com/nicejade/), [博客](https://jeffjade.com)\n- :x: [倾城之链](https://nicelinks.site/):  旨在云集全球优秀网站，方便你我探索互联网中更广阔的世界 - [更多介绍](https://jeffjade.com/2017/12/31/136-talk-about-nicelinks-site/)\n\n#### wizyoung - [GitHub](https://github.com/wizyoung)\n* :white_check_mark: [googletranslate.popclipext](https://github.com/wizyoung/googletranslate.popclipext)：一个 macOS 上的谷歌翻译 PopClip 扩展 - [更多介绍](https://github.com/wizyoung/googletranslate.popclipext)\n\n#### LiuYue - [GitHub](https://github.com/hangxingliu)\n* :x: [steam-key-online-redeem](https://steamis.me)：Steam 游戏兑换码在线批量激活 - [更多介绍](https://github.com/hangxingliu/steam-key-online-redeem)\n\n#### ApacheCN - [博客](http://www.apachecn.org/), [GitHub](https://github.com/apachecn)\n* :x: [MLIA](http://ml.apachecn.org/mlia/)：“机器学习实战”系列课程\n\n#### Easy - [微博](https://weibo.com/easy), [GitHub](https://github.com/easychen)\n* :x:[TimeTodo](http://timetodo.ftqq.com/)：附带计时的Todo工具，支持Mac、Win和Web三个平台。还可以编写WebHook整合到工作流中\n* :white_check_mark:[冷熊简历](http://cv.ftqq.com/)：在线 Markdown 简历工具，支持实时预览，一键 PDF。含常用片段，内容自动保存\n* :white_check_mark:[方糖小剧场](https://github.com/easychen/h2reader-host)：可自行架设的对话体小说阅读器\n* :x:[Slide酱](http://slide.ftqq.com/)：PPT 自动演讲工具，根据 PPT 中的演讲者注释自动生成带语音的视频\n* :x:[福利单词](http://dict.ftqq.com/)：背单词，看妹子\n\n#### SCLeo - [GitHub](https://github.com/SCLeoX)\n* :x: [pattern-finder](https://www.minegeck.net/lab/pf)：一个智能（zhang）的找规律程序 - [更多介绍](https://github.com/SCLeoX/pattern-finder)\n* :white_check_mark: [Reload-Failure](https://scleox.github.io/Reload-Failure/index.html)：一个完全用 2d canvas 实现的伪 3D 躲避游戏 - [更多介绍](https://github.com/SCLeoX/Reload-Failure)\n\n### 2018年3月19号添加\n---\n\n#### Molunerfinn - [GitHub](https://github.com/Molunerfinn)\n* :white_check_mark: [PicGo](https://molunerfinn.com/PicGo)：跨平台的图床图片上传工具 - [更多介绍](https://github.com/Molunerfinn/PicGo)\n* :x: [node-github-profile-summary](https://gh-profile-summary.teamsz.xyz)：漂亮地生成你的GitHub总结的网站 - [更多介绍](https://github.com/Molunerfinn/node-github-profile-summary)\n\n#### xu42 - [GitHub](http://github.com/xu42)\n* :white_check_mark: [qrcode-chrome](https://chrome.google.com/webstore/detail/qr-code-generation/imabbihlfpmlpobbfhmliilagnjeoija)：生成当前页面二维码的极简 Chrome 插件 - [更多介绍](https://github.com/xu42/qrcode-chrome)\n* :x: [个人即时收款方案](https://pay.xu42.cn/)：个人可用的即时收款解决方案 - [更多介绍](https://github.com/xu42/pay)\n\n#### kujian - [博客](http://caibaojian.com/), [GitHub](http://github.com/kujian)\n* :x: [码农头条](http://hao.caibaojian.com)：每日自动抓取开发者文章并推荐 - [更多介绍](http://hao.caibaojian.com/about)\n* :x: [GitHub热榜](http://news.caibaojian.com)：每日自动抓取 GitHub 前端热门项目并推荐\n\n#### Jack Cherng - [GitHub](https://github.com/jfcherng)\n* :white_check_mark: [繁化姬](https://zhconvert.org)：强大的「繁简转换」与「本地化」工具 - [更多介绍](https://docs.zhconvert.org)\n\n#### biezhi - [GitHub](https://github.com/biezhi)\n* :x: [Findor](https://findor.me/)：分享你的个人社交信息\n* :x: [开发者秘籍](https://dev-cheats.com/)：系统的开发者指南、教程\n\n#### Caldis - [GitHub](https://github.com/Caldis)\n* :x: [Mos](http://mos.u2sk.com/)：在 MacOS 上平滑鼠标滚动效果与单独设置滚动方向的小工具 - [更多介绍](https://github.com/Caldis/Mos)\n\n#### neal1991 - [GitHub](https://github.com/neal1991)\n* :x: [上海地铁线路图](https://neal1991.github.io/subway-shanghai)：上海地铁线路图，包括站点时刻表信息，卫生间信息，出入口信息，无障碍电梯信息\n* :white_check_mark: [七牛云图床](https://chrome.google.com/webstore/detail/%E4%B8%83%E7%89%9B%E4%BA%91%E5%9B%BE%E5%BA%8A/fmpbbmjlniogoldpglopponaibclkjdg?utm_source=chrome-ntp-icon)：基于七牛云存储对象实现的私有图床 - [更多介绍](https://segmentfault.com/a/1190000013374209)\n* :white_check_mark: [export-to-markdown](https://chrome.google.com/webstore/detail/export-to-markdown/dodkihcbgpjblncjahodbnlgkkflliim?utm_source=chrome-ntp-icon)：将博文转化成 Markdown 格式，目前支持 Medium 和 elastic 官博 - [更多介绍](https://segmentfault.com/a/1190000011324821)\n* :x: [去哪拍照片](http://ozfo4jjxb.bkt.clouddn.com/gh_900fd73a1fd0_258.jpg)：微信小程序，主要是上海市落户拍照地点，包括免费和收费两种\n\n#### GitIssue - [GitHub](https://github.com/git-issue)\n* :x: [GitIssue](https://gitissue.com): GitHub Issue 博客平台 - [更多介绍](https://gitissue.com/about)\n\n\n#### Haocold - [GitHub](https://github.com/xjh093)\n* :white_check_mark: [X_Wubi](https://itunes.apple.com/cn/app/X_Wubi/id1122043433)：简洁、轻盈，在游戏中学五笔\n\n#### LiangLuDev - [GitHub](https://github.com/LiangLuDev/)\n* :clock8: [微Yue](https://github.com/LiangLuDev/WeYueReader)：Android 电子书阅读 App\n\n#### jkpang - [GitHub](https://github.com/jkpang)\n* :white_check_mark: [PPHub](https://itunes.apple.com/cn/app/PPHub%20For%20GitHub/id1314212521?mt=8)：简洁漂亮的 GitHub 客户端 - [更多介绍](https://github.com/jkpang/PPHub-Feedback)\n\n#### gaolinjie - [GitHub](https://github.com/gaolinjie)\n* :x: [Love2.io](https://love2.io/)：优雅的开源技术文档分享平台 - [更多介绍](https://love2.io/@love2io/doc/hello-love2io)\n\n#### Magic-fe - [GitHub](https://github.com/magic-FE)\n* :white_check_mark: [翻译侠](https://chrome.google.com/webstore/detail/translate-man/fapgabkkfcaejckbfmfcdgnfefbmlion)：超棒的翻译插件（支持 Chrome + Firefox） - [更多介绍](https://github.com/magic-FE/translate-man)\n\n#### Windson - [GitHub](https://github.com/Windsooon)\n* :x: [Channelshunt](https://www.channelshunt.com/)：YouTube 频道推荐站\n* :x: [Thank you, Open source](https://www.thankyouopensource.com/)：给开源项目的感谢信\n* :white_check_mark: [OpenSource Jobs](https://www.osjobs.net/)：根据开源项目的贡献推荐工作\n* :x: [EngineGo](https://www.enginego.org/)：计算机基础教程\n\n\n#### yaoleifly - [GitHub](https://github.com/yaoleifly)\n* :x: [电子书支援计划](https://www.ebooksplan.org/)：以数字资源为核心的自我学习社群\n* :x: [扫地僧的橱柜](https://www.ebooksplan.club/)：支持 Kindle 内置浏览器的资源站\n\n#### mw2c - [GitHub](https://github.com/mw2c)\n* :x: [吉他谱搜索](https://gtpso.com/)：分享、搜索和播放吉他谱的 App 和网站\n* :x: [Tab PlayAlong](https://playalong.gtpso.com/)：连接电吉他到手机，并使用效果器跟随吉他谱练习、演奏和录音的 iOS 应用\n\n#### 小贝 - [GitHub](https://github.com/easyhappy/)\n* :x: [美股指南](https://investguider.com/)：美股、港股投资指南\n\n#### H1ac0k - [博客](http://xrong.net)\n* :x: [斗图啦](https://www.doutula.com)：斗图装逼必备\n\n#### Tolecen - [博客](https://xinle.co/)\n* :white_check_mark: [白描](https://itunes.apple.com/cn/app/id1249901692)：高效的文字识别与翻译软件 - [更多介绍](https://sspai.com/post/42065)\n* :white_check_mark: [西江月](https://itunes.apple.com/cn/app/id1084924739)：遇见传统诗词之美 - [更多介绍](https://sspai.com/post/38786)\n* :x: [天天成语](https://itunes.apple.com/cn/app/id843601091)：简洁方便的离线成语词典 - [更多介绍](https://xinle.co/2016/05/26/chengyu/)\n\n#### textproofreading - [GitHub](https://github.com/textproofreading/)\n* :white_check_mark: [中文错别字纠错校对系统](http://www.CuoBieZi.net/)： 可以在线检测中文错别字的工具\n\n#### hanks - [GitHub](https://github.com/hanks-zyh)\n* :white_check_mark: [便签](https://www.coolapk.com/apk/xyz.hanks.note)：体积不足 2M，功能却全面到令人惊喜的 Android 便签应用 - [更多介绍](https://sspai.com/post/41323)\n* :x: [氢应用](https://www.coolapk.com/apk/pub.hydrogen.android)：Android 插件容器应用\n\n#### CoderDwang - [GitHub](https://github.com/CoderDwang)\n* :clock8: [MoreiTunesConnect_iOS](https://github.com/CoderDwang/MoreiTunesConnect_iOS)：允许多开的非苹果官方的 App 审核状态查询\n\n#### coderyi - [GitHub](https://github.com/coderyi)\n* :x: [Monkey for GitHub](https://itunes.apple.com/cn/app/monkey-for-github/id1003765407)：以 GitHub 排名为主的 GitHub App，支持iOS/Android - [更多介绍](https://github.com/coderyi/Monkey)\n\n#### bugulink - [GitHub](https://github.com/bugulink)\n* :x: [BuguLink](https://bugu.link)：快速安全的文件分享网站\n\n#### Larry - [码力全开科技工作室](http://maliquankai.com)\n* :x: [MiniHour](https://itunes.apple.com/us/app/minihour/id1383208731?mt=8)：时刻关注你的目标时间 - [更多介绍](http://maliquankai.com/2018/05/24/2018-05-24-minihour-product/)\n* :x: [奇点日报](https://itunes.apple.com/us/app/wa-wa-yu-jian-hao-yin-le/id1223916908?l=zh&ls=1&mt=8)：高逼格程序员开发者技术分享平台\n* :x: [破壳日](https://itunes.apple.com/us/app/破壳日/id1267213085?l=zh&ls=1&mt=8)：精美的生日 · 节日 · 纪念日礼物提醒工具\n* :x: [壹日程](https://itunes.apple.com/us/app/壹日程-专注任务管理和待办计划提醒/id1251547470?l=zh&ls=1&mt=8)：专注任务管理和待办计划提醒\n* :x: [心动屋](https://itunes.apple.com/us/app/心动屋-发现令你心动的好物/id1234003952?l=zh&ls=1&mt=8)：发现令你心动的好物\n* :x: [口袋密码](https://itunes.apple.com/us/app/口袋密码-安全简洁的账号管家/id1256288406?l=zh&ls=1&mt=8)：安全简洁的账号管家\n* :x: [拾光记](https://itunes.apple.com/us/app/拾光记-拾起你走过的时光/id1247124599?l=zh&ls=1&mt=8)：拾起你走过的时光\n\n#### lfb-cd - [GitHub](https://github.com/lfb-cd)\n* :white_check_mark: [Net](https://itunes.apple.com/app/id1288011873)：网速展示流量统计工具\n* :x: [Net-Lite](https://itunes.apple.com/app/id1109807177)：精简版网速展示流量统计工具\n* :x: [晴天见](https://itunes.apple.com/app/id1231863233)：极简天气应用\n* :x: [Reminder](https://itunes.apple.com/app/id1258508583): 只有 1.5MB 的极简备忘 APP\n\n#### cllgeek - [GitHub](https://github.com/cllgeek)\n* :white_check_mark: [极客教程](https://www.geekjc.com)：提供学习编程资料的网站\n\n#### CarGuo - [GitHub](https://github.com/CarGuo)\n* :white_check_mark: [GSYGitHubAPP](https://www.pgyer.com/GSYGitHubApp)：高质量的 GitHub 客户端 - [更多介绍](https://github.com/CarGuo/GSYGitHubAPP)\n\n#### biqinglin - [GitHub](https://github.com/biqinglin)\n* :white_check_mark: [小私密](https://link.jianshu.com/?t=https://itunes.apple.com/us/app/小私密-匿名分享你的小私密/id1249902405?l=zh&ls=1&mt=8)：小私密，匿名分享你的小私密的轻社交应用 - [更多介绍](https://www.jianshu.com/p/4582c6f914eb)\n* :white_check_mark:  [App Store 全部作品](https://itunes.apple.com/cn/developer/qinglin-bi/id1228179246?l=en&mt=8)\n\n#### Anynices\n* :white_check_mark: [拼红包](https://www.pinghongbao.com)：外卖红包实时分享\n\n#### sheepkx - [GitHub](https://github.com/sheepkx)\n* :white_check_mark: [闪念ToDo](https://www.coolapk.com/apk/com.kdfly.todo)：ToDo 计划管理App\n\n#### jiangboLee - [GitHub](https://github.com/jiangboLee)\n* :white_check_mark: [Ptoo](https://itunes.apple.com/us/app/ptoo/id1219224872?mt=8)：美图软件 - [更多介绍](https://github.com/jiangboLee/huangpian)\n* :white_check_mark: [即时天气](https://github.com/jiangboLee/WeatherWX)：天气预报小程序~\n\n#### MORECATS - [GitHub](https://github.com/MORECATS)\n* :white_check_mark: [视觉图表](https://itunes.apple.com/cn/app/id1090006424)：适用于 iPhone & iPad 的图表制作应用\n* :white_check_mark: [标注图像+](https://itunes.apple.com/cn/app/id1227197910)：高效快捷地标注图像，长图，拼图，二维码一应俱全\n* :white_check_mark: [课程表](https://itunes.apple.com/cn/app/id1219202104)：一周课程表 & 艾宾浩斯遗忘曲线计划表\n* :white_check_mark: [今日美图](https://itunes.apple.com/cn/app/id1195400858)：获取今日 Bing 美图，每日新视野\n* :white_check_mark: [网速查看+](https://itunes.apple.com/cn/app/id1289105991)：在 iPhone & iPad 通知小部件上查看实时网络上下行速度\n* :white_check_mark: [取色器+](https://itunes.apple.com/cn/app/id1326506149)：像素级图像取色 & 色彩收集\n* :white_check_mark: [短信过滤+](https://itunes.apple.com/cn/app/id1314415052)：基于 iOS 11 新特性的垃圾短信过滤应用\n\n#### Jocs - [GitHub](https://github.com/Jocs)\n* :white_check_mark:  [Mark Text](https://marktext.github.io/website/)：所输及所见的 Markdown 编辑器，支持源码模式、焦点模式、打字机模式 - [更多介绍](https://github.com/marktext/marktext/)\n\n#### 滑滑鸡 - [GitHub](https://github.com/songkuixi)\n* :white_check_mark: [单语](https://itunes.apple.com/cn/app/单语-日语生词本-日语单词-日语学习/id1086636706)：日语单词本应用\n* :white_check_mark: [APOD](https://itunes.apple.com/us/app/apod/id1173315594)：每日天文一图客户端\n* :x: [今日打卡](https://itunes.apple.com/cn/app/keeping-任务管理利器-打卡习惯养成/id1197272196)：小巧的日程管理打卡应用 - [更多介绍](https://github.com/songkuixi/Keeping)\n* :x: [TouchBrickout](https://itunes.apple.com/cn/app/touchbrickout/id1314804894)：在 Mac 上用键盘或者 Touch Bar 进行打砖块的游戏 - [更多介绍](https://github.com/songkuixi/TouchBreakout)\n\n#### haozes - [GitHub](https://github.com/haozes)\n* :white_check_mark: [YaoYao](https://itunes.apple.com/cn/app/id1179393901/)：Apple Watch 跳绳计数应用 - [更多介绍](https://sspai.com/post/40103)\n* :white_check_mark: [DunDun](https://itunes.apple.com/cn/app/dundun-squats-counter/id1348285355?l=zh&ls=1&mt=8)：Apple Watch 深蹲计数应用 - [更多介绍](https://sspai.com/post/43319)\n* :white_check_mark: [Lean](https://itunes.apple.com/cn/app/id1435069659?mt=8)：自重力量训练 - [更多介绍](https://sspai.com/post/47294)\n* :x: [OnlyTalk](https://itunes.apple.com/cn/app/id1462516460?mt=8)：亲情语音对讲 - [更多介绍](https://sspai.com/post/55560)\n\n#### Tuluobo - [GitHub](https://github.com/Tuluobo)\n* :x: [玩客钱包](https://itunes.apple.com/cn/app/%E7%8E%A9%E5%AE%A2%E9%92%B1%E5%8C%85/id1302778851)：迅雷玩客币（改名链克）的非官方查询管理钱包 APP - [更多介绍](https://github.com/Tuluobo/LKWallet)\n\n#### forecho - [GitHub](https://github.com/forecho)\n* :x: [三立三](https://3li3.com/): 提供 Kindle 电子书和 iOS App 降价提醒和购买服务 - [更多介绍](http://blog.3li3.com/releases-v2/)\n\n#### JonyFang - [GitHub](https://github.com/JonyFang), [微博](http://weibo.com/u/3034766044),[Twitter](https://twitter.com/jony_chunfang)\n\n* :x: [Shots 精简壁纸](https://shoots.coding.me/)：精简壁纸应用，最原本的方式，最简朴的体验，只为在你挑选壁纸时，给予小小的建议：）\n\n#### oasisfeng - [GitHub](https://github.com/oasisfeng)\n* :white_check_mark: [绿色守护 (Greenify)](https://www.coolapk.com/apk/com.oasisfeng.greenify)：帮助甄别那些对系统性能和耗电有不良影响的程序，阻止它们 （省略原描述20字）\n* :white_check_mark: [岛 (Island)](https://www.coolapk.com/apk/com.oasisfeng.island)：提供：隔离应用，保护隐私、克隆应用，平行运行（省略原描述20字）等功能\n\n#### meowtec - [GitHub](https://github.com/meowtec/)\n- :white_check_mark: [Imagine](https://github.com/meowtec/Imagine): 跨平台的图片可视压缩 PC App\n\n#### ywwhack - [GitHub](https://github.com/ywwhack)\n* :white_check_mark: [aidou-electron](https://github.com/ywwhack/aidou-electron)：(Mac) 斗图神器 - 根据关键字搜索表情，一键复制\n\n#### kinglisky - [GitHub](https://github.com/kinglisky)\n* :white_check_mark: [aidou](https://chrome.google.com/webstore/detail/aidou/kidfkhcacngpkgkagdmbkncecbnadajb?hl=zh-CN)： (Chrome 插件) 社区回帖 Code review 斗图插件，一键生成表情链接 - [了解更多](https://github.com/kinglisky/aidou)\n\n#### tinyao - [GitHub](https://github.com/tinyao)\n* :x: [有饭](https://fan.zico.im/)：一款白白的饭否 Android 客户端\n\n\n### 2018年3月18号添加\n---\n\n#### 青杨 - [GitHub](https://github.com/HuQingyang)\n* :white_check_mark: [Luoo.qy](https://github.com/HuQingyang/Luoo.qy)：独立音乐社区[落网](http://www.luoo.net/)的第三方电脑客户端\n* :white_check_mark: [Page.qy](https://github.com/HuQingyang/Page.qy)：针对小白(~~懒人~~)的自动化管理、生成、部署个人博客的工具\n\n#### zomco - [GitHub](https://github.com/zomco)\n* :x: [路几](http://www.ruki.pw)：分享精彩的行车记录仪视频\n\n#### Akring - [GitHub](https://github.com/akring)\n* :x: [Star Order for Mac/iOS](https://star-order.com/)：Mac/iOS 双平台的 GitHub Star 管理工具\n\n#### Jinya - [GitHub](https://github.com/JinyaX), [微博](https://weibo.com/934249787)\n* :x: [短信卫士](https://itunes.apple.com/cn/app/%E7%9F%AD%E4%BF%A1%E5%8D%AB%E5%A3%AB/id1317407948?mt=8)：iOS 垃圾短信过滤工具（需要 iOS 11.0 或更高版本）\n* :x: [Key Master]()：iOS 密码管理工具\n\n#### Collider LI - [GitHub](https://github.com/lhc70000)\n* :white_check_mark: [IINA](https://github.com/lhc70000/iina)：现代的 macOS 媒体播放器\n\n#### lijianqiang12 - [博客](http://lijianqiang12.com)\n* :x: [远离手机](http://www.offphone.net)：能将手机锁定一段时间的 App\n\n#### Jason - [博客](https://atjason.com/)\n* :white_check_mark: [Klib](https://itunes.apple.com/cn/app/id1196268448?mt=12)：Kindle、iBooks、多看标注与笔记管理 - [更多介绍](https://toolinbox.net/Klib/)\n* :white_check_mark: [iText](https://itunes.apple.com/cn/app/id1314980676?mt=12)：从图片中识别文字的 OCR 工具 - [更多介绍](https://toolinbox.net/iText/)\n* :white_check_mark: [iPic](https://itunes.apple.com/cn/app/id1101244278?mt=12)：图床工具、Markdown 插图助手，支持微博、七牛、又拍、阿里云等图床 - [更多介绍](https://toolinbox.net/iPic/)\n* :white_check_mark: [iPaste](https://itunes.apple.com/cn/app/id1056935452?mt=12)：给效率人士开发的剪切板工具，macOS & iOS 双平台 - [更多介绍](https://toolinbox.net/iPaste/)\n* :white_check_mark: [iHosts](https://itunes.apple.com/cn/app/id1102004240?mt=12)：唯一上架 Mac App Store 的 /etc/hosts 编辑工具 - [更多介绍](https://toolinbox.net/iHosts/)\n\n\n#### 潇涧 - [GitHub](https://github.com/hujiaweibujidao)\n* :x: [诗鲸](https://tab.leancloud.cn/1/stats/track/2lkBXY)：诗鲸是简洁而呆萌的诗词学习应用 - [更多介绍](http://zuimeia.com/app/5772/?platform=2)\n* :white_check_mark: [干货集中营Mac客户端](https://github.com/hujiaweibujidao/Gank-for-Mac)：『Gank for Mac』 可能是唯一的干货集中营 Mac 客户端\n\n#### tomasy - [GitHub](https://github.com/solobat)\n* :white_check_mark: [Steward](https://github.com/solobat/Steward)：Chrome 上类 Alfred / Wox 命令启动器扩展\n* :white_check_mark: [单词小卡片](https://github.com/solobat/wordcard)：单词查询、例句收集、单词记忆于一体的浏览器扩展，支持 Chrome / Firefox\n\n#### NextStack - [GitHub](https://github.com/safe-dog), [博客](https://blog.nextstack.xyz)\n* :x: [下一栈](https://nextstack.xyz)：把你的博客网站制作成 APP 进行更爽阅读浏览\n\n#### zyx0814 - [GitHub](https://github.com/zyx0814/dzzoffice)\n* :white_check_mark: [DzzOffice](http://dzzoffice.com)：类似 Office365, Google 企业应用套件的开源私有方案\n\n#### ming\n* :white_check_mark: [京价保](https://jjb.im/)：帮你自动申请京东价格保护，顺便签到领券，自动领取返利的 Chrome 拓展 - [更多介绍](https://github.com/sunoj/jjb)\n\n#### 叶大侠 - [GitHub](https://github.com/YeDaxia)\n* :white_check_mark: [声音笔记+](http://www.wandoujia.com/apps/com.cmajor.musicnote)：一个人，也可以像一支乐队一样练琴\n* :white_check_mark: [为你搜谱](http://sopu.52cmajor.com/)：应该是国内最全的乐谱搜索引擎了\n\n####  mclxly - [GitHub](https://github.com/mclxly)\n* :x: [我旁](https://3kmq.com/)：分享 / 发现周边生活资讯的社区\n\n#### drakeet - [GitHub](https://github.com/drakeet)\n- :white_check_mark: [纯纯写作](https://www.coolapk.com/apk/com.drakeet.purewriter?mt=8&uo=4&ct=appcards)：绝不丢失文本编辑器 - [更多介绍](https://sspai.com/post/43650)\n\n#### Soledad - [GitHub](https://github.com/caiyue1993), [微博](https://weibo.com/caiyue233/)\n* :white_check_mark: [Lazy K](https://itunes.apple.com/cn/app/lazy-k/id1348224910?mt=8)：不想聊天的敷衍“输入法” - [更多介绍](https://sspai.com/post/43386)\n* :x: [小目标](https://itunes.apple.com/cn/app/%E5%B0%8F%E7%9B%AE%E6%A0%87-%E9%87%8F%E5%8C%96%E4%BD%A0%E7%9A%84%E8%BF%9B%E6%AD%A5/id1215312957?mt=8)：实用且精致的任务管理类应用，以量化的方式激励你完成目标\n\n#### Gao Deng - [GitHub](https://github.com/gaodeng)\n* :x: [AtPill](https://itunes.apple.com/cn/app/id590504521?mt=12): (Mac) 豆瓣电台客户端\n* :white_check_mark: [HaloRadio](https://www.icyarrow.com/haloradio/)：(Windows) 豆瓣电台客户端\n* :white_check_mark: [Biu](https://github.com/gaodeng/Biu-for-ReadHub)：(Android/iOS) Readhub 移动客户端\n\n#### ymark - [GitHub](https://github.com/ymma)\n* :white_check_mark: [易词云](http://yciyun.com)：根据各种图片模板生成词云图片\n* :white_check_mark: [易LOGO](http://yeelogo.com/)：简单的在线生成 Logo 网站\n* :x: [二维码梦工厂](http://qrdream.ymark.cc/)：专注于个性、动态、扁平、表情二维码生成\n\n#### GhostSKB - [GitHub](https://github.com/dingmingxin/GhostSKB)\n* :x: [GhostSKB](https://itunes.apple.com/cn/app/ghostskb/id1134384859?mt=12)：(Mac) 可根据应用设置默认输入法，应用切换时，输入法也跟随切换\n\n#### simpleapples - [GitHub](https://github.com/simpleapples)\n* :white_check_mark: [饭斯基](https://github.com/simpleapples/fansky)：第三方饭否iOS客户端\n* :white_check_mark: [摇摇选餐](https://github.com/simpleapples/ShakeChoose)：随机选餐工具\n* :white_check_mark: [短网址二维码生成器](https://github.com/simpleapples/url2qrcode)：Chrome 短网址二维码生成器\n* :white_check_mark: [App Store 全部作品](https://itunes.apple.com/cn/developer/zhiya-zang/id549139622)\n\n### 2018年3月17号添加\n---\n\n#### wangzuo\n* :white_check_mark: [RapZH](https://rapzh.com/): 中文说唱数据库 - [更多介绍](https://wanqu.io/t/rapinchina/7371)\n\n#### KyXu - [GitHub](https://github.com/OpenMarshall), [微博](http://weibo.com/kaiyuanxu)\n* :x: [Nihon Cam](https://itunes.apple.com/cn/app/id1362401778)：提供 5810 种滤镜的另类美图软件，已被 App Store 推荐\n* :x: [Nihon](https://itunes.apple.com/app/id1315486029)：在 iOS 上呈现日本传统颜色 - [更多介绍](https://wanqu.io/t/nihon-ios/7678)\n* :x: [闪念](https://itunes.apple.com/cn/app/id1342519507)：在 iPhone 上尽力复刻了锤子的 Idea Pills - [更多介绍](https://wanqu.io/t/iphone-idea-pill/8038)\n* :x: [记分牌](https://itunes.apple.com/cn/app/id1080572635)：(iOS) NBA 比分跟踪利器 - [更多介绍](https://wanqu.io/t/ios-mac-nba/8051)\n* :x: [Basketball Moment](https://itunes.apple.com/cn/app/id1185284010)：(Mac) NBA 比分跟踪利器 - [更多介绍](https://wanqu.io/t/ios-mac-nba/8051)\n* :x: [时间规划局](https://itunes.apple.com/cn/app/id1204689405)：提醒珍惜时间的 iOS Today Widget\n* :x: [飞花令](https://itunes.apple.com/cn/app/id1340671116)：用三十万古诗词数据打造的极简飞花令主题 App\n* :x: [App Store 全部作品](https://itunes.apple.com/cn/developer/id988271193)\n\n#### 61\n* :x: [PriceTag](https://itunes.apple.com/cn/app/price-tag/id1166819590?mt=8)：应用资讯即刻知晓\n\n#### oldj\n* :white_check_mark: [妙笔](https://wonderpen.app)：Mac 平台写作软件 - [更多介绍](https://docs.wonderpen.app/)\n* :x: [SwitchHosts!](https://swh.app)：便捷的 Hosts 管理工具 - [更多介绍](https://github.com/oldj/SwitchHosts)\n\n#### Kenshin\n* :white_check_mark: [简悦](http://ksria.com/simpread/)：让你瞬间进入沉浸式阅读的 Chrome 扩展 - [更多介绍](https://wanqu.io/t/200-chrome/7181)\n* :white_check_mark: [Emoji](http://ksria.com/emoji/)：简单、可靠、纯粹、中文语义化的 Emoji 扩展\n\n#### jadeydi\n* :white_check_mark: [TopTalkedBooks](https://toptalkedbooks.com/)：收集 Hacker News, Stack Overflow, Reddit 书，展示推荐最多的书 - [更多介绍](https://wanqu.io/t/hacker-news-stack-overflow-reddit-2017-09-04/)\n\n#### soasme\n* :x: [Techshack Weekly](https://wanqu.io/t/techshack-weekly/7809)：精细耕耘后端开发的每一个知识点 - [更多介绍](https://wanqu.io/t/techshack-weekly/7809)\n\n#### wwayne\n* :x: [Cominsoon](https://cominsoon.io/)：快速搭建『即将上线』页面 - [更多介绍](https://wanqu.io/t/cominsoon/7676/4)\n\n#### 寂小桦\n* :x: [小专栏](https://xiaozhuanlan.com/)：专业人士的写作社区 - [更多介绍](https://www.v2ex.com/t/392109)\n\n#### 像素君\n* :x: [创造狮导航](http://chuangzaoshi.com)：创意工作者导航\n\n#### wichna\n* :white_check_mark: [Paybase](https://paybase.cn)：专注于支付领域的垂直论坛 - [更多介绍](https://paybase.cn/d/35-paybase)\n* :white_check_mark: [Anyshortcut](https://anyshortcut.com/)：Chrome/Firefox 效率插件，自定义快捷键快速打开常用网站 - [更多介绍](https://sspai.com/post/42272)\n\n#### 猫叔 - [GitHub](https://github.com/imeoer), [博客](http://www.chole.io/)\n* :x: [纸小墨](https://www.v2ex.com/t/393185#reply710)：全平台笔记软件\n\n#### 糖醋陈皮 - [GitHub](https://github.com/1c7), [微博](https://weibo.com/2004104451/profile?topnav=1&wvr=6)\n* :white_check_mark: [字幕组机翻小助手](https://tern.1c7.me)：机器翻译 .srt .ass 字幕文件\n* :x: [寓住](https://yuzhu.me)：找长租公寓/评价长租公寓\n* :white_check_mark: [Sideidea](http://sideidea.com)：独立开发者分享做项目盈利的故事，目前内容均翻译自 Indie Hacker，暂无原创内容。\n* :x: [CC 速成班](https://www.coolapk.com/apk/com.crashcourse.china.c17)：聚合所有中文字幕 Crash Course 视频 - [更多介绍](https://wanqu.io/t/app-cc-crash-course/7606)\n* :x: youtube-sumup.com：总结 Youtube 视频内容\n* :x: 月可(onereco.com)：写短总结推荐好文\n\n---\n\n## 推荐一些对独立开发者有帮助的网站：\n\n### 英文\n* [Indie Hacker](https://www.indiehackers.com/)\n* [Failory](https://www.failory.com/) - 分享创业失败的故事\n* [Starter Story](https://www.starterstory.com/) - 采访 e-commerce(电商) 的盈利故事，和 Indie hacker 很像，不过是专注于电商领域\n* [Awesome Indie](https://github.com/mezod/awesome-indie)\n* [MicroConf 视频](http://www.microconf.com/starter/past-videos/)\n* [Stripe Atlas Guide](https://stripe.com/atlas/guides)\n* [Opps Daily - 这家的 newsletter 做得好，推荐订阅](https://www.oppslist.com/)\n* [Master of Scale](https://mastersofscale.com)\n* [NomadList](https://nomadlist.com/) - 远程工作时可以用 NomadList 挑选去哪个城市\n\n### 中文\n* [Sideidea](http://sideidea.com/) - 分享独立开发者的盈利故事\n* [利器](http://liqi.io/creators/)\n* [PriceTag 的独立开发者采访（公众号 PriceTagApp）](https://mp.weixin.qq.com/s/WZ6ULaATxIA1fZOUXZVobA)\n* [v2ex 论坛 - 分享创造板块](https://www.v2ex.com/go/create)\n\n## 值得关注的 Twitter 账号\n* [Patrick McKenzie (@patio11)](https://twitter.com/patio11)\n* [Pieter Levels (@levelsio)](https://twitter.com/levelsio)  - 做了 Nomadlist 和 RemoteOK 等产品 - [更多介绍](https://twitter.com/levelsio/status/968027544103473152)\n* [Courtland Allen (@csallen)](https://twitter.com/csallen) - Indie Hacker 创始人\n\n\n## 寻找远程工作\n1. [电鸭](https://eleduck.com/)\n1. [remoteintech/remote-jobs](https://github.com/remoteintech/remote-jobs)\n1. [RemoteOK](https://remoteok.io/)\n"
  },
  {
    "path": "_config.yml",
    "content": "theme: jekyll-theme-hacker"
  },
  {
    "path": "pyproject.toml",
    "content": "[project]\nname = \"chinese-independent-developer\"\nversion = \"0.1.0\"\ndescription = \"Add your description here\"\nreadme = \"README.md\"\nrequires-python = \">=3.13\"\ndependencies = [\n    \"httpx[socks]>=0.28.1\",\n    \"openai>=2.14.0\",\n    \"pygithub>=2.8.1\",\n]\n"
  }
]