AI 产品解读Automated SSO login helper for educational applications
Eliminates the need for students and teachers to manually enter credentials each time they log into school applications by automating the entire login flow via Wonde/MyLogin SSO tokens
1) Student/teacher navigates to a school application URL that contains a MyLogin/Wonde SSO token. 2) The content script detects the token via CookieManager.ssoDetected(). 3) The extension fetches the user's credentials from the MyLogin/Wonde API using the token. 4) It fills in the login form fields and submits the form automatically. 5) If a captcha is detected, it pauses and prompts the user. 6) On success, it cleans up cookies and logs completion. Alternatively, clicking the extension icon opens app.mylogin.com to initiate the SSO flow.
Detects SSO login tokens (wonde-login/mylogin-login) in URL parameters or cookiesFetches credentials from MyLogin/Wonde password retrieval APIAutomatically fills login form fields (supports React, Angular, and standard HTML inputs)Handles multi-step login processes (Version 1 and Version 2 protocols)Detects captchas and prompts users to complete them manuallyHandles SPA-based login flows with page-by-page progression
- 目标用户
- K-12 students / Teachers / School administrators using Wonde/MyLogin managed educational technology
- Cannot verify what happens on the MyLogin/Wonde platform (app.mylogin.com) - the SSO authentication flow and whether it has paid tiers is not visible from extension code
- Cannot determine if schools/individuals need to pay for the MyLogin/Wonde service
- The extension targets all HTTPS pages (content script match pattern 'https://*/*') but only activates when SSO tokens are present, so the wide permissions are necessary for its workflow
付费分析未识别到付费功能
No evidence of paid features, subscriptions, payment gates, or billing APIs anywhere in the extension source code. Grepping for premium, subscription, upgrade, payment, price, billing, and plan returned zero matches. The 'pro' keyword hits in the static analysis are false positives from words like 'process', 'production', and 'prod' (as in the URL path /prod/pass). The 'license' hit is from jQuery's MIT license header. No feature gating or upgrade prompts exist.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension's core workflow requires an SSO token from the MyLogin/Wonde platform. The service_worker.js opens https://app.mylogin.com when the extension icon is clicked (service_worker.js:2). The content script detects login tokens via URL parameters (wonde-login/mylogin-login) or cookies, then fetches credentials from the MyLogin/Wonde API (lib/V2.js:152-159, lib/V1.js:42-44). Without being authenticated on the MyLogin/Wonde platform first, the extension has no token to work with and cannot perform any login automation.