AI 产品解读Browser-based Single Sign-On (SSO) automation that works with Soliton Systems' SmartOn ID desktop application to automatically fill in login credentials for web services
Eliminates the need for manual login to enterprise web applications by automating credential entry (both HTTP Basic Auth and form-based logins) through integration with the SmartOn ID credential management system
1) Extension loads and connects to SmartOn ID desktop app via native messaging. 2) Content script (ssopass.js) runs on all pages and sends 'sso_search' to find matching credentials. 3) Native app returns credential settings. 4) For HTTP Basic Auth: background.js intercepts onAuthRequired and auto-provides credentials. 5) For form-based logins: ssopass.js locates account/password input fields and submit buttons, fills values, fires events, and clicks submit. 6) Users can also trigger SSO via right-click context menu.
HTTP Basic Authentication interception and auto-fill via onAuthRequired listenerForm-based login automation by detecting and filling account/password fields on web pagesContext menu integration for manual SSO trigger on specific pages/framesNative messaging bridge to SmartOn ID desktop application (jp.co.soliton.smarton.id.pass)Encrypted communication with desktop app using AES encryption (CryptoJS)Application authentication support (app_auth_flag handling)
- 目标用户
- Enterprise users in organizations deploying SmartOn ID by Soliton Systems / Japanese enterprise IT environments (default locale is Japanese) / Users requiring automated SSO for web applications managed by their organization's SmartOn ID configuration
- Cannot verify SmartOn ID desktop application's licensing/payment model as it's external to the extension
- Extension source code is minified, limiting readability of some logic paths
- The extension requires a specific desktop application (SmartOn ID) to function, which cannot be tested in isolation
付费分析未识别到付费功能
The extension itself is completely free with no payment, subscription, license check, upgrade, or billing UI anywhere in the source code. No references to premium, subscription, payment, pricing, or tiered features exist. While SmartOn ID (the companion desktop application from Soliton Systems) is a separate enterprise product that likely has commercial licensing, the extension does not gate any features, call billing APIs, or show upgrade prompts. All keyword hits for 'pro' and 'license' in the static scan originate from lib/crypto-js.js (the CryptoJS library) and _metadata/verified_contents.json, which are not related to paid features.
- 置信度
- 92
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension itself does not require the user to log into an account. It acts as a bridge/connector between the browser and the SmartOn ID desktop application via native messaging. The 'auth' references in the code (webRequestAuthProvider, onAuthRequired, authCredentials) relate to the extension's core function of automating HTTP Basic Auth and form-based authentication for destination services, not to logging into the extension itself. The extension sends an 'init' message to the native app on load (background.js line 15) and communicates via native messaging port 'jp.co.soliton.smarton.id.pass', but no login UI or account creation flow exists in the extension source.