{ "manifest_version": 3, "name": "Browser Pilot", "version": "1.0.0", "description": "Agentic browser control – Chat UI, MCP server, and direct AI integration. Let any LLM read pages, click buttons, fill forms, execute JS, take screenshots.", "permissions": [ "activeTab", "tabs", "scripting", "storage", "sidePanel", "alarms", "webNavigation", "debugger" ], "host_permissions": [""], "background": { "service_worker": "background.js" }, "side_panel": { "default_path": "sidepanel.html" }, "content_scripts": [ { "matches": [""], "js": ["content.js"], "run_at": "document_idle", "all_frames": false } ], "action": { "default_title": "Browser Pilot", "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" } }