AI 产品解读Extract and display authentication tokens/cookies from Notion and Plaud for use in Make (Integromat) automation configurations
Users connecting Make with Notion Plus or Plaud need to find and copy authentication credentials (cookies, tokens, space IDs, user IDs) manually, which is difficult without technical knowledge. This extension automates the discovery and display of these credentials.
1. User installs extension and logs into notion.so or web.plaud.ai. 2. User navigates to a Notion page or Plaud page. 3. User clicks the extension icon. 4. Extension detects the active site and extracts relevant cookies/tokens from the current tab. 5. Credentials are displayed in the popup with mask/unmask and copy options. 6. User copies credentials and pastes them into Make (make.magicmealkits.com/connections) for automation setup. 7. For Notion pages, extension also offers bulk download of files/images as zip.
Extract and display Notion authentication cookies (token_v2, file_token)Extract and display Space ID and User ID from Notion pagesExtract and display Plaud API tokens and service URLsMask/unmask sensitive credential displayOne-click copy to clipboard for credentialsToken expiration date monitoring and display
- 目标用户
- Make (Integromat) automation users / Business automation enthusiasts / Team workflow managers / Users connecting Notion Plus with Make / Plaud API users
- The background.js is heavily minified (106KB, mostly JSZip library code), making it difficult to fully trace all notification/webhook logic. However, the core credential extraction logic in popup.js and contentScript.js is clear. The extension's notification system uses a Supabase backend (nlzibyxwsewhdmvjlqgw.supabase.co) for version announcements, but this is unrelated to authentication or payments.
付费分析未识别到付费功能
The extension is entirely free with no paid features, subscription gates, or billing logic. No payment platforms (Stripe, PayPal, etc.) are referenced. No upgrade prompts, license checks, or feature-gating based on payment status exist in any source file. The keyword 'pro' found in static analysis appears only in unrelated contexts (e.g., 'processes all data locally', 'protect your data', 'protected' in privacy.html, and minified code variable names). The extension simply reads cookies/tokens from already-logged-in sessions and provides copy-to-clipboard functionality.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires the user to be logged into the destination services (notion.so and web.plaud.ai) to function. The popup explicitly states 'Log into notion.so first' (popup.html:369) and 'Log in to web.plaud.ai and click this extension to extract' (popup.js). The extension reads authentication cookies from these domains (chrome.cookies.getAll({domain:'notion.so'}) in popup.js), which only exist when the user is logged in. The extension itself does not implement its own login system; it depends entirely on the user's existing session at the destination service.