AI 产品解读Salesforce Debug Log Viewer and Manager
Salesforce developers and admins struggle to efficiently view, search, and manage debug logs within the Salesforce platform. This extension simplifies the process by providing a dedicated UI for log management directly in the browser.
1. User navigates to a Salesforce domain (e.g., .salesforce.com or .force.com) while logged in. 2. User clicks the extension icon. 3. Extension checks for a valid Salesforce session ID (sid) cookie. 4. If valid, it opens a new tab with the extension's UI (index.html) pre-loaded with the Salesforce host. 5. The UI fetches and displays debug logs, allowing the user to filter, search, download, delete, or view them.
View and manage Salesforce debug logs in a searchable data tableFilter logs by specific Salesforce usernameDownload selected or individual debug logsDelete selected logs or delete all logs (up to 2,000 at once)Search across logs with keyword highlightingView full log details in a new tab
- 目标用户
- Salesforce developers / Salesforce system administrators / IT support staff working with Salesforce
- The extension relies on the user being on a Salesforce domain to detect the session; it cannot function if the user is not already logged into Salesforce. The analysis assumes the extension's UI (bundle.js) does not contain hidden paywalls, as no billing logic was found. The 'premium' keyword is a false positive from the MUI X library dependency.
付费分析未识别到付费功能
The extension itself is free and does not contain any billing, subscription, or upgrade logic. The keyword 'premium' found in bundle.js is part of the MUI X DataGridPremium React component library (a third-party UI dependency), not a feature of this extension. There are no references to Stripe, PayPal, license keys, or paid feature gating in the extension code.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires the user to be logged into a Salesforce org to function. It retrieves the Salesforce session ID (sid) cookie from the browser. If no session is found, it explicitly alerts the user: 'Failed to get sid. Please login to Salesforce and try again' (background.js:18). The extension does not implement its own login UI; it relies entirely on the destination service's authentication.