Files
playwright-mcp/packages/extension/manifest.json
Yury Semikhatsky 3971e4c093 feat(extension): group connected tabs into a green Playwright tab group (#1514)
## Summary
- Add `tabGroups` permission to the extension manifest
- When the connect page opens (via action button click or MCP relay
connect), place it into a green tab group titled "Playwright"
- When a tab is connected to an MCP session, add it to the same group
- When the active connection closes, remove the connected tab from the
group via `chrome.tabs.ungroup`
- Add three tests: group assigned to connect page, group shared with
connected tab, and group cleaned up on disconnect
2026-04-03 18:02:33 -07:00

35 lines
740 B
JSON

{
"manifest_version": 3,
"name": "Playwright MCP Bridge",
"version": "0.0.70",
"description": "Share browser tabs with Playwright MCP server",
"permissions": [
"debugger",
"activeTab",
"tabs",
"tabGroups"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "lib/background.mjs",
"type": "module"
},
"action": {
"default_title": "Playwright MCP Bridge",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
}