Files
playwriter/extension/manifest.json
2025-11-19 13:13:24 +01:00

32 lines
764 B
JSON

{
"manifest_version": 3,
"name": "Playwriter MCP",
"version": "0.0.48",
"description": "Playwright MCP. 90% less context window. 10x more capable (full playwright API)",
"permissions": [
"debugger"
],
"host_permissions": [
"<all_urls>"
],
"background": {
"service_worker": "lib/background.mjs",
"type": "module"
},
"action": {
"default_title": "Click to attach debugger",
"default_icon": {
"16": "icons/icon-gray-16.png",
"32": "icons/icon-gray-32.png",
"48": "icons/icon-gray-48.png",
"128": "icons/icon-gray-128.png"
}
},
"icons": {
"16": "icons/icon-gray-16.png",
"32": "icons/icon-gray-32.png",
"48": "icons/icon-gray-48.png",
"128": "icons/icon-gray-128.png"
}
}