AI 产品解读Enterprise user authentication agent for Netsweeper web filtering infrastructure
Associates Chrome browser users with their correct identity and filtering group in a Netsweeper-managed network, enabling administrators to apply appropriate web filtering policies per user/group
Administrator deploys the extension via enterprise policy with Netsweeper configuration JSON. The extension reads the Chrome profile's signed-in Google account email, optionally queries Google Groups for group membership via OAuth, resolves the user's domain/username/group (DUG), encodes this identity information in base64, and sends it to the Netsweeper filtering infrastructure so the correct filtering profile is applied to that user's traffic.
Retrieves Chrome profile email via chrome.identity.getProfileUserInfoObtains OAuth token and queries Google Admin Directory API for user group membershipResolves domain, username, and group information (DUG - Domain User Group)Encodes and sends user identity data to Netsweeper filtering infrastructureSupports enterprise managed configuration via gSuite JSON or Windows Group PolicyMonitors idle/lock state and network changes to re-authenticate as needed
- 目标用户
- Enterprise/organization employees using Chromebooks or managed Chrome browsers / IT administrators deploying Netsweeper web filtering in managed environments
- service.js is heavily minified (single line, 34KB), making some logic flow harder to trace precisely
- The exact communication protocol with Netsweeper infrastructure is embedded in minified code and truncated in the grep output
- Cannot verify if the extension has a visible popup UI since no popup is declared in manifest (action has only icon/title, no default_popup)
付费分析未识别到付费功能
No evidence of paid features, premium tiers, subscriptions, billing, license checks, or upgrade flows within the extension. No matches for premium, subscription, billing, license, upgrade, or payment keywords. The 'pro' keyword hits are false positives from minified Promise code and JSON properties. While Netsweeper is a commercial enterprise filtering product that organizations purchase separately, the extension itself does not gate features or implement payment logic.
- 置信度
- 90
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 是
- 登录理由
- The extension's core purpose is user authentication for Netsweeper filtering. It uses chrome.identity.getProfileUserInfo() to retrieve the logged-in Chrome profile's email and chrome.identity.getAuthToken({interactive:true}) to obtain an OAuth token for Google Admin Directory API access. Without a signed-in Chrome profile, the extension cannot identify the user or perform its primary function of associating users with filtering groups.