mirror of
https://github.com/microsoft/playwright-mcp.git
synced 2025-07-24 06:42:26 +08:00
41 lines
803 B
JSON
41 lines
803 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Playwright MCP Bridge",
|
|
"version": "1.0.0",
|
|
"description": "Share browser tabs with Playwright MCP server through CDP bridge",
|
|
|
|
"permissions": [
|
|
"debugger",
|
|
"activeTab",
|
|
"tabs",
|
|
"storage"
|
|
],
|
|
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
|
|
"background": {
|
|
"service_worker": "lib/background.js",
|
|
"type": "module"
|
|
},
|
|
|
|
"action": {
|
|
"default_title": "Share tab with Playwright MCP",
|
|
"default_popup": "popup.html",
|
|
"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"
|
|
}
|
|
}
|