{ "manifest_version": 3, "name": "Llama Helper", "version": "1.0", "description": "AI POWERED QnA.", "permissions": ["activeTab"], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "icon.png", "48": "icon.png", "128": "icon.png" } }, "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [""], "js": ["popup.js"] } ] }