AI 产品解读Browser automation agent bridge — connects OpenAI's Codex AI agent to Chrome to perform tasks on websites
Enables AI-driven automation of browser-based workflows (research, form filling, dashboard review, data updates) on websites where the user is already signed in, eliminating manual multi-step browser tasks
User installs the extension alongside the Codex desktop app. The extension connects to the local Codex process via WebSocket. User gives Codex a task, and the AI agent navigates Chrome — opening tabs, clicking elements, filling forms, reading content — in isolated tab groups, asking for user confirmation before sensitive actions.
AI-controlled browser navigation and interaction on any websiteTask-specific tab groups that don't interrupt active browsingForm filling and multi-step workflow automationResearch and context gathering across multiple tabsDashboard and internal tool review with summarizationUser confirmation before sensitive actions (file uploads, site access, history references)
- 目标用户
- OpenAI Codex users / Knowledge workers who use CRMs and internal web apps / Users automating repetitive browser-based research and data entry tasks
- Source code is heavily minified (background.js 144KB, popup JS 201KB) making detailed logic inspection difficult
- No explicit login/auth/account UI code found — may be handled entirely by the native Codex app
- Cannot confirm exact paid tier gating without access to the Codex desktop app source
付费分析未识别到付费功能
The extension itself contains no billing logic, subscription gates, upgrade prompts, or payment UI. The 'upgrade' keyword hit in popup JS and 'license' hit in CSS are from generic library code (React, Tailwind CSS MIT license), not payment features. The underlying OpenAI Codex service may have paid tiers (e.g., ChatGPT Pro), but the extension does not gate features or call billing APIs.
- 置信度
- 75
- 支付平台
- --
- 来源
- AI / 中
- 需要登录
- 是
- 登录理由
- The extension is a launcher/bridge for OpenAI's Codex agent service. It connects to a local Codex process (CSP allows ws://127.0.0.1:* and nativeMessaging permission). The Codex product requires an OpenAI account. The extension itself has no login UI (no 'login', 'auth', 'account', 'token' keywords found in source), but the underlying Codex service it depends on requires authentication.
error launching app是啥意思 折腾半天了
Codex cant even connect to it.
eme
nice
edge浏览器不能用吗?codex端显示未链接
多谢zuqi liao提供的修复方案,等于救命了!!!
特别感谢 zuqi liao 提供的解决路径,现已修复并且正常使用。
特别鸣谢上一条用户”zuqi liao“提供的解决路径,复用临时热修后连接不上的问题确认得到解决
deneme yapıyorum claude dispact kadar yeteneklimi göreceğiz
Windows 版 Codex + Codex Chrome Extension 1.1.5 存在一个会导致 Chrome backend 无法被 Codex 发现的 bug。 现象: - agent.browsers.list() 只返回 Codex In-app Browser - agent.browsers.get("extension") 报错:Browser is not available: extension - 扩展已安装且启用,Native Messaging Host manifest 检查也正常 定位: 扩展 background.js 的 getInfo() 调用了不存在的 chrome.runtime.getVersion(),导致 getInfo 崩溃。Chrome 标准 API 应该使用: chrome.runtime.getManifest().version 临时热修: chrome.runtime.getVersion = () => chrome.runtime.getManifest().version 热修后 Chrome backend 可以正常被 Codex 发现并使用。请在下个版本修复这个 API 调用。