Search...Search plugins and themes...
⌘K
Sign in
  • Get started
  • Download
  • Pricing
  • Enterprise
  • Account
  • Obsidian
  • Overview
  • Sync
  • Publish
  • Canvas
  • Mobile
  • Web Clipper
  • CLI
  • Learn
  • Help
  • Developers
  • Changelog
  • About
  • Roadmap
  • Blog
  • Resources
  • System status
  • License overview
  • Terms of service
  • Privacy policy
  • Security
  • Community
  • Plugins
  • Themes
  • Discord
  • Forum / 中文论坛
  • Merch store
  • Brand guidelines
Follow us
DiscordTwitterBlueskyThreadsMastodonYouTubeGitHub
© 2026 Obsidian

Clip2MD

Clip2MDClip2MD31 downloads

Clip2MD 一键剪藏全网内容为纯净Markdown,自动同步至Obsidian,让每一次浏览都沉淀为你的私人知识资产.

Add to Obsidian
Clip2MD screenshot
  • Overview
  • Scorecard
  • Updates4

Clip2MD is an Obsidian plugin that turns captured web content into clean Markdown and syncs completed clipping tasks to your knowledge base. It can save images locally, preserve task metadata, update previously synchronized notes, and organize files with customizable folder and filename templates.

将网页剪藏内容转换为 Markdown,并同步到 Obsidian。Clip2MD 负责网页内容的提取与整理,Obsidian 插件负责把已完成的剪藏任务写入你的 Vault。

功能

  • 将 Clip2MD 中已完成的剪藏任务同步为 Obsidian Markdown 文件。
  • 支持标题、来源、日期、标签和任务 ID 等 Frontmatter 字段。
  • 支持本地保存图片,并在笔记中更新图片链接。
  • 已同步的任务会被记录,重复同步时更新原文件,减少重复笔记。
  • 支持手动同步、启动后同步和定时同步。
  • 支持微信扫码绑定,也支持在设置中手动填写 API Key。
  • 支持自定义目标文件夹、文件名模板、Frontmatter 模板和合并模式。

使用要求

  • Obsidian 1.12.7 或更高版本。
  • 桌面版或移动版 Obsidian。
  • Clip2MD 账号或有效的 API Key。
  • 网络连接。插件需要访问 Clip2MD 服务才能绑定账号、获取任务和下载图片。

安装

从 Obsidian 社区插件安装

插件通过 Obsidian 社区插件目录审核后,可以在 Obsidian 中打开:

  1. 设置 → 社区插件。
  2. 搜索 Clip2MD。
  3. 安装并启用插件。

手动安装

从 GitHub Releases 下载与版本号对应的以下文件,并放入 Vault 的 .obsidian/plugins/clipmd/ 目录:

  • main.js
  • manifest.json
  • styles.css

然后在 Obsidian 的 设置 → 社区插件 中启用 Clip2MD。

配置

  1. 打开 设置 → 社区插件 → Clip2MD。
  2. 使用微信扫码绑定,或切换到手动模式填写 API Key。
  3. 设置目标文件夹;留空时不会把任务同步到 Vault。
  4. 根据需要配置同步间隔、文件名模板、Frontmatter 模板和图片模式。
  5. 点击 立即同步,或启用启动后同步和定时同步。

默认情况下,笔记会保存到 Vault 根目录下的 Clip2MD 文件夹,文件名格式为 {{created_date}}-{{title}}。

插件会在配置异常恢复前创建 .obsidian/.clip2md-config-backup/ 配置备份。备份包含同步设置和状态,但会主动移除 API Key;如果从备份恢复,需重新填写 API Key。该目录属于运行数据,不应提交到 GitHub。

构建与验证

本仓库是官方 Obsidian 社区插件市场的独立源码仓库。安装依赖并执行完整校验:

npm ci
npm run verify

本插件的 manifest ID 为 clipmd;Clip2MD 是展示名称,手动安装目录必须使用 .obsidian/plugins/clipmd/。

Installation (English)

Install Clip2MD from the Obsidian Community Plugins browser after the plugin is approved. For manual installation, download main.js, manifest.json, and styles.css from the matching GitHub Release and place them in .obsidian/plugins/clipmd/ inside your vault. Then enable the plugin in Settings → Community plugins.

Usage (English)

Open Settings → Community plugins → Clip2MD, connect your account with the QR code or API key, choose a target folder, and click Sync now. The plugin downloads completed clipping tasks as Markdown files and can also save images locally. The ribbon button and command palette provide the same sync action.

npm run verify 会执行类型检查、测试、压缩生产构建和市场合规扫描。主仓库的 scripts/build-obsidian-local.sh 负责从包含本地版本功能的源码生成市场变体,不复制到本仓库;主仓库的 scripts/build-prod.sh 负责整个 Clip2MD 产品发布,也不属于本仓库。

本仓库没有 deploy 命令;main.js 是构建产物,不提交到 Git,发布时作为与 manifest.json 版本一致的 GitHub Release 附件上传。发布前应执行 npm ci && npm run verify。

兼容性审计确认运行时未使用 Node.js 或 Electron API,因此 manifest 声明支持移动端;当前已在 macOS 的 Obsidian 1.13.7 窗口完成加载和设置页 UI 冒烟测试,移动端以及最低版本 1.12.7 仍需在真实环境中补充验证。

网络与数据说明

插件会通过 HTTPS 访问以下 Clip2MD 官方服务:

  • https://api.clip2md.cn/api/v1:账号绑定、API Key 认证、获取同步任务和下载任务图片。
  • https://clip2.md:打开 Clip2MD 网页和 API 凭据管理页面。

同步时,插件使用 API Key 作为 X-API-Key 请求头向 Clip2MD 服务认证,并读取属于当前账号的剪藏任务内容,然后在本地 Vault 中创建或更新 Markdown 文件及图片。API Key 由 Obsidian 保存在插件设置文件 data.json 中;该文件仅用于本地运行,不应提交到 GitHub。

插件不会读取或上传 Vault 中与同步任务无关的文件,也不包含客户端遥测。使用前请确认你信任 Clip2MD 服务及其数据处理方式。

隐私与安全建议

  • 不要把 API Key、data.json 或其他凭据提交到 Git 仓库。
  • 不要把 API Key 粘贴到 GitHub Issue、公开日志或截图中。
  • 如果 API Key 泄露,请立即在 Clip2MD 凭据管理页面撤销并重新生成。

发布说明

本仓库用于构建和发布 Clip2MD Obsidian 社区插件。发布新版本时,请确保:

  1. manifest.json 中的 version 使用 x.y.z 格式。
  2. GitHub Release 的 Tag 与 manifest.json 中的版本号完全一致。
  3. Release 附件包含 main.js、manifest.json 和 styles.css。
  4. README.md、LICENSE 和 manifest.json 位于仓库根目录。
  5. 不提交 data.json、API Key 或其他运行时凭据。

当前插件版本为 1.0.5,最低 Obsidian 版本为 1.12.7。1.0.4 使用相同最低版本,因此当前不需要兼容性回退映射;未来提高最低版本时,必须在发布前增加 versions.json,记录旧版本的最低版本要求。

提交社区插件目录前,请阅读 Obsidian 插件提交要求 和 开发者政策。

反馈

请在 GitHub Issues 中反馈问题或提出建议。

许可证

MIT License

HealthExcellent
ReviewPassed
About
将网页剪藏内容转换为 Markdown 并同步到 Obsidian Vault,自动生成标题、来源、日期、标签和任务 ID 等 Frontmatter 字段。保存本地图片并更新笔记中的图片链接,记录已同步任务以避免重复并在重复同步时更新原文件;支持手动、启动后或定时同步并通过扫码或 API Key 绑定账号。
ImportSyncingImages
Details
Current version
1.0.7
Last updated
6 days ago
Created
2 weeks ago
Updates
4 releases
Downloads
31
Compatible with
Obsidian 1.13.7+
Platforms
Desktop, Mobile
License
MIT
Report bugRequest featureReport plugin
Author
Clip2MDClip2MDclip2md
clip2.md
GitHubclip2md
  1. Community
  2. Plugins
  3. Import
  4. Clip2MD

Related plugins

Local Images Plus

A reincarnation of Local Images to download images in Markdown notes to local storage.

Importer

Convert your data to Markdown files you can use in Obsidian. Works with Apple Notes, OneNote, Evernote, Notion, Google Keep, and many other formats.

Self-hosted LiveSync

Sync vaults securely to self-hosted servers or WEBRTC.

Fast Note Sync

Real-time sync of your vaults across server, mobile, and web; shareable with anyone; supports REST and MCP integrations to build your personal AI knowledge base.

Google Drive Sync

Syncs a vault into Google Drive for cross-platform use (works for iOS).

Ink

Handwriting and drawing directly between paragraphs using a digital pen, stylus, or Apple pencil.

Image Captions

Add captions to images with inline Markdown and link support. The caption format is compatible with the Commonmark spec and other Markdown applications.

YAOS

Simple real-time sync powered by your own Cloudflare Worker.

Sync Engine

The extensible vault synchronization engine: Fast · Free · Reliable. Supports WebDAV, S3, and Google Drive.

Zotero Integration

Insert and import citations, bibliographies, notes, and PDF annotations from Zotero.