[Windows] Browser plugin fails with "browser-client is not trusted" despite advertised chrome and iab backends
Open 💬 8 comments Opened May 8, 2026 by mickitty0511
💡 Likely answer: A maintainer (github-actions[bot], contributor)
responded on this thread — see the highlighted reply below.
What version of the Codex App are you using (From “About Codex” dialog)?
26.506.2212.0
What subscription do you have?
Pro
What platform is your computer?
Microsoft Windows NT 10.0.26200.0 x64
What issue are you seeing?
The Codex Desktop Browser / browser-use plugin fails with:
privileged native pipe bridge is not available; browser-client is not trusted
This happens even though the Node REPL request metadata advertises both chrome and iab as available browser backends.
The issue appears to be with the Browser plugin runtime or Node REPL trusted native pipe injection, not with the local web app being tested. Direct Playwright automation against the same localhost URL works.
Diagnostics observed from Node REPL:
{
"hasNativePipe": false,
"requestMeta": {
"x-codex-browser-use-available-backends": [
"chrome",
"iab"
]
}
}
Additional observations:
x-codex-browser-use-available-backends includes chrome and iab
import.meta.__codexNativePipe is not available
\\.\pipe\codex-browser-use-* pipes exist
~/.codex/config.toml has the Browser plugin enabled
The local app is reachable over HTTP
Direct Playwright Chromium automation against the same URL succeeds
### What steps can reproduce the bug?
Uploaded thread: daff1fa5-966b-436a-8791-682411321073
*To Codex dev teams, reference this id. You have my submitted logs.
Start Codex Desktop on Windows.
Use the bundled Browser plugin:
browser-use@openai-bundled
observed path: ~/.codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha2/
In the Node REPL, run:
const { setupAtlasRuntime } = await import(
"file:///C:/Users/ms-ef/.codex/plugins/cache/openai-bundled/browser-use/0.1.0-alpha2/scripts/browser-client.mjs"
);
await setupAtlasRuntime({ globals: globalThis });
const browser = await agent.browsers.get("chrome");
Repeat with iab:
const browser = await agent.browsers.get("iab");
Both fail with the same trust/native pipe error.
### What is the expected behavior?
What is the expected behavior?
If chrome or iab is advertised as an available backend, Browser plugin setup should succeed:
await setupAtlasRuntime({ globals: globalThis });
const browser = await agent.browsers.get("chrome");
// or
const browser = await agent.browsers.get("iab");
After setup, browser navigation, DOM snapshots, screenshots, clicks, and reloads should work.
### Additional information
Workaround: direct Playwright execution works against the same target.
npx -y playwright install chromium
npx -y playwright screenshot --browser chromium "http://127.0.0.1:59832/?sample=web-edited-sales&v=type-old-new-layout" tmp/page.png
A temporary Node runner with the playwright package also works for multi-step UI checks.
Suspected cause: the browser backends are detected, but the current Node REPL runtime is not receiving the trusted native pipe bridge. This looks like a Codex Desktop / Browser plugin runtime initialization issue, or a failure to inject import.meta.__codexNativePipe into the Node REPL environment.
8 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Additional data point from Windows:
Importing
browser-client.mjsfrom the plugin cache path produced:privileged native pipe bridge is not available; browser-client is not trusted
But importing it from the bundled marketplace source path worked:
C:\Users\rodri\.codex\.tmp\bundled-marketplaces\openai-bundled\plugins\chrome\scripts\browser-client.mjs
After that,
agent.browsers.list()returned both:The Chrome extension backend then successfully opened https://example.com/ and read the title "Example Domain".
So at least in this case, the trust error was path-sensitive: cache path failed, bundled marketplace path succeeded.
I’m seeing the same issue on Windows with the Codex Desktop Chrome plugin.
Error:
Local diagnostics:
Commands/checks used from the bundled Chrome plugin all pass:
Tried recovery steps:
Expected:
Actual:
This looks like the Desktop runtime is not injecting/exposing the trusted native pipe bridge to the Node REPL despite the Chrome extension and native host installation checks passing.
I can reproduce the same trusted bridge failure on a newer Codex Windows build.
Environment:
OpenAI.Codex_26.513.4821.0codex-cli 0.132.0Profile 3Connected1.1.4_0Failure:
Both Browser/IAB and Chrome extension direct bridge fail before any page interaction with:
What I tested:
%USERPROFILE%\.codex\plugins\cache\openai-bundled\browser\0.1.0-alpha2\scripts\browser-client.mjs%USERPROFILE%\.codex\plugins\cache\openai-bundled\chrome\0.1.7\scripts\browser-client.mjs%USERPROFILE%\.codex\.tmp\bundled-marketplaces\openai-bundled\plugins\browser\scripts\browser-client.mjs%USERPROFILE%\.codex\.tmp\bundled-marketplaces\openai-bundled\plugins\chrome\scripts\browser-client.mjsThe cache and bundled marketplace
browser-client.mjsfiles currently have the same SHA256 hash on this machine.Both bundled marketplace clients export
setupBrowserRuntime. In the active JS turn, request metadata contains:x-codex-browser-use-available-backendscontains:x-codex-turn-metadatais present and includes keys such as:But the JS runtime still has:
Latest Desktop logs show:
Latest logs do not show:
Fresh local Codex Desktop thread tests:
@Browser open https://example.com and read the page titlereproduced the trusted native-pipe failure, then only succeeded through the Playwright MCP fallback.@Chrome list my open tabsdid not expose the real Chrome-backed tab API and only saw an isolated Playwright tab (about:blank), not the user's real Chrome profile tabs.The user also retried the Browser/Chrome plugin repair/re-add flow and restarted Codex, but the direct bridge still did not recover.
Workaround:
Playwright MCP still works for browser automation. The failure appears specific to Codex Desktop trusted native-pipe / browser-client trust injection for the direct Browser/Chrome bridge.
I am seeing the same issue on Windows Codex App.
Error:
privileged native pipe bridge is not available; browser-client is not trusted
In my environment, Chrome is running, the Codex Chrome Extension is installed and enabled, and the native host manifest appears to be correct, but Codex still cannot control Chrome/Gmail through the Chrome plugin.
This blocks browser automation for Gmail. I would appreciate a fix or an official workaround.
Adding a related Windows datapoint that may help narrow this down.
On Codex Desktop for Windows, I can reproduce a browser/native-pipe failure mode that changes depending on the filesystem sandbox setting.
Observed behavior:
agent.browsers.list()shows aChromebackend withtype: "extension", and navigation tohttps://x.com/works in the logged-in Chrome profile.This makes the issue look less like a Chrome extension install problem and more like the Windows sandbox is blocking or preventing the trusted native pipe bridge / browser-client trust path from being injected or accessed correctly.
Environment details:
I do not have a minimal code fix, but the sandbox on/off comparison seems like a useful signal: the same Chrome profile and extension setup works when the sandbox is disabled, and fails when sandboxing is enabled.
Additional Windows recovery datapoint from another affected machine. This is not an official fix, but it may help narrow down the failure mode.
Environment:
26.527.3686.0codex-cli 0.135.0-alpha.1browser,chrome, andcomputer-useplugins at26.527.31326Symptoms observed:
browser-client is not trustedprivileged native pipe bridge is not availablecodex plugin list --marketplace openai-bundledcould show plugins as enabled, while runtime bootstrap still failednot installedbecause local plugin cache directories/manifests were missingWhat recovered this machine:
browser,chrome, andcomputer-useplugin cache directories/manifests from the bundled marketplace source. Avoided overwriting already-loaded native files while Codex was running.node_replMCP server:The important part was not hard-coding someone else's values. The SHA-256 list was computed from the installed plugin client files on that machine, and the Computer Use pipe was discovered from the current live
\\.\pipe\codex-computer-use-*pipe.SKY_CUA_NATIVE_PIPE_DIRECTORYto the current live pipeconfig.tomlVerification after repair:
config.tomlparsed successfullycodex mcp get node_replshowed the expected env entriescodex plugin list --marketplace openai-bundledshowed Browser, Chrome, and Computer Use asinstalled, enabledagent.browsers.list()sky.list_apps()andsky.list_windows()My interpretation:
config.tomlrepair scripts.Sanitized write-up of the local repair is here:
https://gist.github.com/dingjianhui123-create/9c3c2b83c2a45c2ef32f9991e712edba
Windows Codex Desktop datapoint, likely related but with an earlier bootstrap failure:
26.707.71524codex-cli --version:0.27.0browser-client.mjsfrom the Node REPL fails before backend discovery with:The plugin begins by assigning a
processShimtoglobalThis.processandglobalThis.global.process. In this Desktop Node REPL environment, that assignment is rejected. As a result,setupBrowserRuntime()never completes and neither IAB nor Chrome control can be attempted.Tried: fully exiting Codex, rebooting Windows, reopening the in-app browser, and retrying. The error is unchanged.
This appears related to the trusted browser/native-pipe runtime injection issues in this thread, but differs from the later
browser-client is not trustederror because it fails immediately at theprocessshim initialization. No browser account, cookies, or site-specific data are involved.