UNPKG

browser-agent-mcp

Version:

Chrome extension and MCP server for comprehensive browser automation with AI agents

39 lines (38 loc) 878 B
{ "manifest_version": 3, "name": "Browser Agent MCP", "version": "0.1.0", "description": "Chrome extension for AI agent browser automation with MCP protocol support", "permissions": [ "activeTab", "tabs", "storage", "scripting", "debugger", "webNavigation" ], "host_permissions": ["<all_urls>"], "background": { "service_worker": "background.js", "type": "module" }, "content_scripts": [ { "matches": ["<all_urls>"], "js": ["content-script.js"], "run_at": "document_start", "all_frames": true } ], "action": { "default_popup": "popup.html", "default_title": "Browser Agent MCP" }, "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": ["injected-script.js"], "matches": ["<all_urls>"] } ] }