From 855ba0a6f54e4e7235c872f8f34ff499bd1b24fe Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 27 Apr 2026 10:40:08 -0700 Subject: [PATCH 1/2] docs: rebrand "Playwright MCP Bridge extension" to "Playwright Extension" Update references in MCP and agent-cli docs and link directly to the Chrome Web Store listing instead of the package README. --- agent-cli/commands/attach.mdx | 6 +++--- mcp/configuration/browser-extension.mdx | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/agent-cli/commands/attach.mdx b/agent-cli/commands/attach.mdx index 71adae2949..cf3d1ce998 100644 --- a/agent-cli/commands/attach.mdx +++ b/agent-cli/commands/attach.mdx @@ -13,7 +13,7 @@ Connect to an existing browser instead of launching a new one. | `attach --cdp=` | Connect to a running browser by channel name | | `attach --cdp=` | Connect via Chrome DevTools Protocol endpoint | | `attach --endpoint=` | Connect to a Playwright server endpoint | -| `attach --extension` | Connect via Playwright MCP Bridge extension | +| `attach --extension` | Connect via Playwright Extension | ## Attach by channel name @@ -70,9 +70,9 @@ playwright-cli snapshot ## Browser extension -Connect to your existing browser tabs using the [Playwright MCP Bridge extension](https://github.com/microsoft/playwright-mcp/blob/main/packages/extension/README.md). This lets you reuse your logged-in sessions, cookies, and installed extensions. +Connect to your existing browser tabs using the [Playwright Extension](https://chromewebstore.google.com/detail/playwright-mcp-bridge/mmlmfjhmonkocbjadbfplnigmagldckm). This lets you reuse your logged-in sessions, cookies, and installed extensions. -Playwright MCP Bridge extension in Chrome Web Store +Playwright Extension in Chrome Web Store ```bash playwright-cli attach --extension diff --git a/mcp/configuration/browser-extension.mdx b/mcp/configuration/browser-extension.mdx index c8a5d4bcde..95365d811a 100644 --- a/mcp/configuration/browser-extension.mdx +++ b/mcp/configuration/browser-extension.mdx @@ -56,9 +56,9 @@ Works with Chrome/Chromium with `--remote-debugging-port`, Edge, Electron apps, ## Connect via browser extension -The [Playwright MCP Bridge extension](https://github.com/microsoft/playwright-mcp/blob/main/packages/extension/README.md) connects to your existing browser tabs, reusing your logged-in sessions, cookies, and installed extensions. +The [Playwright Extension](https://chromewebstore.google.com/detail/playwright-mcp-bridge/mmlmfjhmonkocbjadbfplnigmagldckm) connects to your existing browser tabs, reusing your logged-in sessions, cookies, and installed extensions. -Playwright MCP Bridge extension in Chrome Web Store +Playwright Extension in Chrome Web Store 1. Install the extension in Chrome or Edge 2. Configure the MCP server: From a5c4dece6364f49029ee6de26bf6fa91c645210b Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Mon, 27 Apr 2026 10:51:41 -0700 Subject: [PATCH 2/2] docs(attach): add examples for attach --extension with channel --- agent-cli/commands/attach.mdx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/agent-cli/commands/attach.mdx b/agent-cli/commands/attach.mdx index cf3d1ce998..9990a2b98e 100644 --- a/agent-cli/commands/attach.mdx +++ b/agent-cli/commands/attach.mdx @@ -13,7 +13,8 @@ Connect to an existing browser instead of launching a new one. | `attach --cdp=` | Connect to a running browser by channel name | | `attach --cdp=` | Connect via Chrome DevTools Protocol endpoint | | `attach --endpoint=` | Connect to a Playwright server endpoint | -| `attach --extension` | Connect via Playwright Extension | +| `attach --extension` | Connect via Playwright Extension (defaults to Chrome) | +| `attach --extension=` | Connect via Playwright Extension to a specific channel | ## Attach by channel name @@ -75,9 +76,17 @@ Connect to your existing browser tabs using the [Playwright Extension](https://c Playwright Extension in Chrome Web Store ```bash +# Attach to Chrome (default) playwright-cli attach --extension + +# Attach to a specific channel +playwright-cli attach --extension=chrome-canary +playwright-cli attach --extension=msedge +playwright-cli attach --extension=msedge-dev ``` +If no channel is specified, the extension attaches to Chrome by default. + ### When to use extension mode - **SSO / 2FA** — skip complex login flows by reusing your authenticated session