{ "manifest_version": 3, "name": "Kapture MCP Browser Automation", "short_name": "Kapture", "version": "0.14.0", "description": "Remote browser automation via MCP - DevTools Extension", "author": "William Kapke", "homepage_url": "https://github.com/williamkapke/kapture", "permissions": ["activeTab", "debugger"], "host_permissions": [""], "background": { "service_worker": "background.js", "type": "module" }, "devtools_page": "devtools.html", "content_scripts": [ { "matches": [""], "js": ["console-listener.js"], "run_at": "document_start", "all_frames": false, "world": "MAIN" }, { "matches": [""], "js": ["page-helpers.js", "content-script.js"], "run_at": "document_start", "all_frames": false } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }, "icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" } }