AI 产品解读Integrates Edflex educational resource recommendations directly into Google Search results.
Helps users discover relevant educational content (MOOCs, videos, articles, etc.) from Edflex's curated library while searching on Google.
1. User installs extension and activates it with organization credentials (clientId/secretKey). 2. When user performs a Google Search, the content script detects the search page. 3. The extension extracts the search query. 4. It sends the query to the Edflex API to find relevant educational resources. 5. The results are displayed in a panel injected into the Google Search results page.
Injects an 'Edflex' panel into Google Search results pagesSearches Edflex's resource database based on the user's Google search queryFilters results by type (MOOC, Video, Article, Podcast, etc.)Organization-specific configuration (clientId/secretKey) for B2B access
- The extension relies on external Edflex APIs for its core functionality; offline analysis cannot verify the full user experience or API response formats.
- The 'activation' process involves redirecting to an external URL (www.my-mooc.com), which is likely a white-labeled Edflex instance. The exact nature of the 'organization partnership' is not fully visible in the code.
付费分析未识别到付费功能
The extension is free to install and use. It does not contain any code for billing, subscriptions, or payment processing. The 'pro' keyword matches in the static analysis are false positives (e.g., 'production.min.js', 'pro' in 'productivity'). The extension requires an organization to partner with Edflex, but this is an access control mechanism (B2B distribution), not a paid feature gate within the extension itself. There is no evidence of the extension charging users or gating features behind a paywall.
- 置信度
- 90
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension requires organization-level configuration (clientId, secretKey, baseUrl) to function. The background script checks for these credentials; if missing, it redirects the user to an Edflex activation URL (https://www.my-mooc.com/.../welcome). The content script and main JS perform an OAuth-style 'signInRequest' using these credentials to get an access token from the Edflex API. Without this organization partnership/activation, the extension cannot fetch or display search recommendations.