codex - 💡(How to fix) Fix Windows app: Browser Use is packaged and feature-flagged but not exposed in UI or plugin marketplace [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openai/codex#19251Fetched 2026-04-24 10:40:10
View on GitHub
Comments
1
Participants
2
Timeline
5
Reactions
2
Timeline (top)
labeled ×4commented ×1

In the Codex Windows desktop app, Browser Use appears to be packaged with the app and feature flags appear enabled, but the feature is not exposed in Settings, Plugins, autocomplete, shortcuts, or local URL handling.

Root Cause

In the Codex Windows desktop app, Browser Use appears to be packaged with the app and feature flags appear enabled, but the feature is not exposed in Settings, Plugins, autocomplete, shortcuts, or local URL handling.

Code Example

%ProgramFiles%\WindowsApps\OpenAI.Codex_26.422.2339.0_x64__2p2nqsd0c76g0\app\resources\plugins\openai-bundled\plugins\browser-use

---

{
  "name": "openai-bundled",
  "plugins": [
    { "name": "browser-use" },
    { "name": "latex-tectonic" }
  ]
}

---

%USERPROFILE%\.codex\.tmp\bundled-marketplaces\openai-bundled

---

{
  "name": "openai-bundled",
  "plugins": [
    { "name": "latex-tectonic" }
  ]
}

---

features=[..., Plugins, InAppBrowser, BrowserUse, ...]
RAW_BUFFERClick to expand / collapse

Summary

In the Codex Windows desktop app, Browser Use appears to be packaged with the app and feature flags appear enabled, but the feature is not exposed in Settings, Plugins, autocomplete, shortcuts, or local URL handling.

Environment

  • OS: Windows
  • Codex Windows app package after update: OpenAI.Codex_26.422.2339.0_x64__2p2nqsd0c76g0
  • App install location: %ProgramFiles%\WindowsApps\OpenAI.Codex_26.422.2339.0_x64__2p2nqsd0c76g0
  • Auth mode observed in logs: ChatGPT
  • Model in use: gpt-5.5

Symptoms

  • No Browser Use section appears in Settings.
  • No Browser Use plugin appears in Plugins.
  • @browser-use and @Browser do not autocomplete.
  • Ctrl+Shift+B does nothing.
  • Typing/clicking http://localhost:3000, http://localhost:8000, or http://localhost does not open an in-app browser.

Diagnostics

The installed app package contains the Browser Use plugin:

%ProgramFiles%\WindowsApps\OpenAI.Codex_26.422.2339.0_x64__2p2nqsd0c76g0\app\resources\plugins\openai-bundled\plugins\browser-use

The packaged marketplace includes both browser-use and latex-tectonic:

{
  "name": "openai-bundled",
  "plugins": [
    { "name": "browser-use" },
    { "name": "latex-tectonic" }
  ]
}

But the rebuilt user bundled marketplace cache only contains latex-tectonic:

%USERPROFILE%\.codex\.tmp\bundled-marketplaces\openai-bundled

Cached marketplace observed:

{
  "name": "openai-bundled",
  "plugins": [
    { "name": "latex-tectonic" }
  ]
}

The Codex logs for the running session show feature flags including both InAppBrowser and BrowserUse:

features=[..., Plugins, InAppBrowser, BrowserUse, ...]

Things tried

  1. Updated Codex through the Microsoft Store.
  2. Fully quit Codex.
  3. Deleted %USERPROFILE%\.codex\.tmp\bundled-marketplaces\openai-bundled.
  4. Restarted Codex.
  5. Confirmed the cache rebuilt, but it still omitted browser-use.
  6. Tried an experimental config.toml override pointing [marketplaces.openai-bundled].source directly to the packaged marketplace. On restart/update, Codex reset it back to the filtered cache path.

Expected behavior

If BrowserUse and InAppBrowser are enabled and the packaged marketplace includes browser-use, the Windows app should expose Browser Use in Settings/Plugins and allow @browser-use or the documented in-app browser shortcut/URL behavior.

Actual behavior

Browser Use is packaged and appears feature-flagged, but is filtered out of the user marketplace cache and unavailable in the UI.

Notes

This looks like a Windows app marketplace-cache/filtering, rollout-gating, or UI exposure bug rather than a missing package or stale install.

extent analysis

TL;DR

The browser-use plugin is likely being filtered out of the user marketplace cache, causing it to be unavailable in the UI despite being packaged and feature-flagged.

Guidance

  • Verify that the browser-use plugin is correctly listed in the packaged marketplace by checking the openai-bundled JSON file in the app's resources directory.
  • Check the Codex logs for any errors or warnings related to marketplace caching or plugin filtering.
  • Try manually modifying the config.toml file to point to the packaged marketplace, and then restart Codex to see if the browser-use plugin is exposed in the UI.
  • Investigate the marketplace caching mechanism to determine why the browser-use plugin is being filtered out of the user cache.

Example

No code snippet is provided as the issue seems to be related to configuration and caching rather than code.

Notes

The issue may be related to a bug in the Windows app's marketplace caching or filtering mechanism, rather than a problem with the browser-use plugin itself. Further investigation is needed to determine the root cause.

Recommendation

Apply a workaround by manually modifying the config.toml file to point to the packaged marketplace, as this may allow the browser-use plugin to be exposed in the UI. This workaround may need to be reapplied after each update to the app.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

FAQ

Expected behavior

If BrowserUse and InAppBrowser are enabled and the packaged marketplace includes browser-use, the Windows app should expose Browser Use in Settings/Plugins and allow @browser-use or the documented in-app browser shortcut/URL behavior.

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING