A Product of ThePortlandCompany.com

Sign In

Remote browser testing for AI. Live sessions. Real browsers. Screenshots. And more.

Checking your session…

Codex Plugin

Use the supported Codex integration

Install this through Codex's native plugin flow by pointing a repo or personal marketplace entry at the local plugin folder. OpenAI's official public plugin directory is still not self-serve, so native install today means local marketplace JSON plus a local plugin path.

Plugin pathplugins/remote-browser-service
Repo marketplace file.agents/plugins/marketplace.json
Personal marketplace file~/.agents/plugins/marketplace.json
Recommended

Repo-local native install

Use this when the agent already has this repo checked out. Paste this into .agents/plugins/marketplace.json at the repo root, restart Codex, open the Plugins UI, then install Remote Browser Service.

{ "name": "tpc-repo", "interface": { "displayName": "TPC Repo Plugins" }, "plugins": [ { "name": "remote-browser-service", "source": { "source": "local", "path": "./plugins/remote-browser-service" }, "policy": { "installation": "AVAILABLE", "authentication": "ON_INSTALL" }, "category": "Developer Tools" } ] }
Optional

Personal marketplace install

Use this when you want the plugin available across projects. Place the plugin at ~/plugins/remote-browser-service or symlink that path to this repo's plugin folder, then paste this into ~/.agents/plugins/marketplace.json.

{ "name": "spencer-local", "interface": { "displayName": "Spencer Local Plugins" }, "plugins": [ { "name": "remote-browser-service", "source": { "source": "local", "path": "./plugins/remote-browser-service" }, "policy": { "installation": "AVAILABLE", "authentication": "ON_INSTALL" }, "category": "Developer Tools" } ] }
Install Flow

Native Codex plugin steps

  1. Ensure the plugin folder exists at ./plugins/remote-browser-service in the repo or ~/plugins/remote-browser-service for a personal marketplace.
  2. Add one of the JSON snippets above to the matching marketplace.json file.
  3. Restart Codex so the marketplace is reloaded.
  4. Open the native Plugins UI, open the marketplace entry, and select Install Plugin for Remote Browser Service.
  5. Start a new thread and ask Codex to use the plugin. Runtime values such as REMOTE_BROWSER_TOKEN are only needed when actually opening a live browser session.

Git repos and npm packages are distribution channels, not the native install source. Codex installs from marketplace entries that point at local plugin folders.