AI 产品解读Web clipper browser extension that captures and saves web content to the Joplin note-taking desktop application
Users need a convenient way to capture web pages, articles, screenshots, URLs, and text selections from their browser directly into their Joplin notes without manual copy-pasting
User browses the web → clicks the extension icon or uses a keyboard shortcut → popup opens showing clip options (complete page, simplified page, URL, selection, screenshot) → user optionally selects a target notebook and adds tags → content is processed (HTML simplified via Readability if needed, converted to Markdown) → sent to local Joplin desktop app via its clipper API server on localhost → note is created in Joplin
Clip complete web pages as Markdown or HTMLClip simplified/readable versions of web pages using Mozilla ReadabilityClip page URLs as notesClip selected text/HTML from pagesCapture and crop screenshots of visible page areasSelect target Joplin notebook and add tags before saving
- 目标用户
- Joplin desktop application users / Researchers and knowledge workers who save web content to notes / Users who prefer local-first, open-source note-taking over cloud services
- The popup/build/index.js is heavily minified (182KB single line), making exact line-level analysis difficult for UI logic
- Cannot determine from code alone whether Joplin Cloud (a separate paid service) sync features interact with clipped content
- The 'subscription' keyword match appears to be within bundled React/Redux code internals, not actual subscription feature code
付费分析未识别到付费功能
No evidence of paid features, billing, payment platforms, premium tiers, or feature gating anywhere in the extension code. The 'pro' keyword matches are all false positives (protocol, process, profiler, property, etc.). No matches for premium, upgrade, stripe, payment, or purchase. Joplin is open-source software and the extension itself is completely free with all features available to all users.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension does not require login to any account. It uses a local token-based pairing mechanism to authenticate with the user's own Joplin desktop application running on localhost (127.0.0.1). The 'token' and 'auth' detected by the heuristic are for the local Joplin Clipper Server API authentication, not for account-based login. The auth flow (visible in popup/build/index.js) discovers the local Joplin server by probing ports, requests an auth_token, and the user approves the connection in the Joplin desktop app. No username/password, account creation, or third-party auth provider is involved.