AI 产品解读Enterprise single sign-on (SSO) and App Proxy link translation for Microsoft Entra ID (Azure AD) managed applications
Enables enterprise users to securely sign into organizational applications using password-based SSO directly from login pages or the My Apps portal, access internal company URLs remotely through App Proxy, and manage corporate app access from a single browser extension
User installs extension → clicks 'Sign in to get started' → authenticates via Microsoft Entra ID → extension monitors browser tabs for Azure AD/Entra ID pages → when visiting an SSO-enabled app's login page, extension injects saved credentials or redirects through My Apps portal → for App Proxy, extension rewrites internal URLs to external proxy URLs → SAML SSO flow handled by intercepting SAMLRequests on login.microsoftonline.com → extension communicates with background service worker via chrome.runtime messages for state management
Password-based single sign-on for enterprise applications from login pages and My Apps portalApp Proxy link translation to access internal company URLs while remoteSAML SSO configuration and testing (OneClickSSO)My Apps portal integration for searching accessible applicationsLogin control metadata capture for enterprise app administratorsSAML response interception and handling
- 目标用户
- Enterprise/organizational users managed by Microsoft Entra ID (Azure AD) / IT administrators configuring SSO for enterprise applications / Remote workers accessing internal corporate applications via App Proxy
- Source code is heavily minified (background.js is 158KB minified), making deep code inspection difficult
- Could not verify exact authentication flow mechanism (cookie-based vs token-based) due to minification
- The extension has host_permissions for all URLs (http://*/*, https://*/*) which is broad but justified by its App Proxy URL rewriting functionality
付费分析未识别到付费功能
No evidence of premium, subscription, billing, payment, upgrade, or pricing mechanisms anywhere in the source code. All 'paid' keyword matches are false positives: 'pro' appears in minified code as part of variables like 'proceed', 'process', or 'prompt'; 'license' appears only in third-party library license headers (MIT/BSD). Grep for 'premium', 'subscription', 'billing', 'payment', and 'price' returned zero matches. The extension is a free enterprise utility provided by Microsoft for Entra ID customers.
- 置信度
- 95
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 需要复核
- 登录理由
- The extension's default popup is NotLoggedInPopup.html with a 'Sign in to get started' button that triggers a refreshData message to background.js. All core functionality depends on the user being authenticated to a Microsoft Entra ID (Azure AD) organizational account. The extension interacts exclusively with Azure AD/Entra ID URLs (account.activedirectory.windowsazure.com, myapplications.microsoft.com, login.microsoftonline.com) and identifies the user's tenant via localStorage. Without an authenticated Entra ID session, the extension has no usable functionality.
存在冲突