2025-06-13 22:15:17 +02:00
|
|
|
{
|
|
|
|
"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": {
|
2025-06-26 13:52:08 -07:00
|
|
|
"service_worker": "lib/background.js",
|
2025-06-13 22:15:17 +02:00
|
|
|
"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"
|
|
|
|
}
|
|
|
|
}
|