{ "manifest_version": 3, "name": "Context Extractor", "version": "1.5.0", "description": "Extract clean, AI-ready context from any webpage \u2014 page content, console logs, network requests, and JS errors. Works unpacked in Chrome and Brave.", "permissions": [ "activeTab", "scripting", "storage" ], "host_permissions": [ "" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Context Extractor" }, "content_scripts": [ { "matches": [ "" ], "js": [ "core/dom.js", "content.js" ], "run_at": "document_start", "all_frames": false }, { "matches": [ "" ], "js": [ "page-patcher.js" ], "world": "MAIN", "run_at": "document_start", "all_frames": false } ] }