AI 产品解读Web clipper and content saver that saves web pages, articles, emails, tweets, YouTube videos, LinkedIn posts, and other web content directly to Notion databases and pages
Users need a seamless way to capture and organize web content into Notion without manual copy-paste, including automatic metadata extraction and structured database property filling
User browses web content → clicks extension icon or right-clicks → extension popup opens with auto-extracted metadata → user selects target Notion database/page → fills optional properties (tags, etc.) → saves content directly to Notion with screenshots, highlights, and metadata mapped to database fields
Save web articles, emails, tweets, YouTube videos, LinkedIn posts, and recipes to NotionFill database properties (tags, relation, checkbox) directly in the extension popupTake screenshots and upload images from the web to NotionHighlight text portions on web pages and send them to NotionAuto-map webpage metadata (publication date, author, etc.) to database propertiesCreate different forms/templates for various use cases
- 目标用户
- Notion users / Knowledge workers / Content curators / Researchers / Students and professionals who use Notion for note-taking and organization
- Popup main.js is a large minified React bundle (3.5MB) - not fully analyzed for internal paywall logic
- Could not verify if the upgrade button opens a paid paywall or redirects to Notion's own pricing
- The extension's own auth service (auth.savetonotion.so) purpose not fully determined - could be for OAuth or extension account
付费分析未识别到付费功能
The extension appears free with no active paid features. Evidence: serviceWorker.js line 4 shows payment functions stubbed to always return false: checkUserPaid:async()=>!1, getExtPayUser:async()=>{}, openPaymentPage:async()=>!1. While clipper.js contains upgrade button UI (lines 221, 425-429, 518-519, 547-555) and an SVG with id='star-upgrade', no subscription, stripe, billing, premium, or plan keywords were found in the main popup JS. The store description states 'Start using Save to Notion today for free!' The upgrade UI may be vestigial or for Notion's own plans, not an extension paywall.
- 置信度
- 70
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires users to be logged into Notion to function. Evidence: clipper.js lines 615-618 shows a 'closeAndLogin' case that displays alert 'In order to use the extension, please login to Notion' and redirects to https://www.notion.so/login. The extension uses Notion's API with authentication tokens (serviceWorker.js contains full Notion API client code). The manifest has cookies permission and host_permissions for https://*.notion.so/* to read Notion session cookies. External host auth.savetonotion.so is used for authentication. Login is required for the destination service (Notion), not for an extension-specific account.