playwright-mcp/console-capture-extension/manifest.json

37 lines
673 B
JSON
Raw Permalink Normal View History

{
"manifest_version": 3,
"name": "Console Capture Extension",
"version": "1.0.0",
"description": "Captures comprehensive console messages including browser-level warnings and errors",
"permissions": [
"debugger",
"tabs",
"activeTab",
"storage"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"48": "icon-48.png",
"128": "icon-128.png"
}
}