AI 产品解读Classroom management browser extension that allows teachers to remotely control and monitor student Chrome browser activity in real-time via Impero's cloud platform
Enables teachers to manage student internet usage during class — blocking distracting sites, disabling internet entirely, launching required websites, and monitoring open tabs — to maintain focus and enforce digital learning policies
Teacher uses Impero's cloud-based classroom management dashboard → commands are sent to a local Impero agent on each student device → the agent relays commands via WebSocket (localhost:9000) to this Chrome extension → extension executes: closes tabs, redirects blocked URLs to blocked.html, disables web access by redirecting all navigation to web-disabled.html, and reports open tabs back to the teacher via the WebSocket connection.
Disable internet access on student devices remotelyEnforce website allow-lists and block-listsLaunch specific websites on student browsers automaticallyView open browser tabs and close tabs remotelyShow blocked/disabled pages with localized messages (EN, DE, NL, JA)
- 目标用户
- K-12 teachers and educators / School IT administrators using Impero classroom management / Students in managed Chromebook/Chrome browser environments
- Extension source is minified/bundled (single-line serviceWorker.js), making detailed code review harder
- Cannot inspect the local Impero agent at localhost:9000 to determine its auth requirements
- Cannot determine if the Impero cloud platform enforces licensing at the extension deployment level vs. at the teacher dashboard level
付费分析未识别到付费功能
The extension itself contains no payment UI, no billing APIs, no license checks, and no feature gating. All functionality (tab management, web blocking, blacklists/whitelists) works without any in-extension payment. However, the extension is part of Impero's cloud-based classroom management platform, which is a paid enterprise/education product sold to schools. The extension's features are only useful when paired with an Impero subscription on the destination service side.
- 置信度
- 80
- 支付平台
- --
- 来源
- AI / 高
- 需要登录
- 否
- 登录理由
- The extension itself does not require the student (end-user) to log in. It connects to a local WebSocket at ws://localhost:9000 and passively receives commands from a locally-installed Impero agent. chrome.identity.getProfileUserInfo() is used to read the Chrome profile email for identification sent to the local service — this is a browser-profile lookup, not a login flow. No login UI, no authentication tokens, no credential submission exists in the extension code.