{ "manifest_version": 3, "name": "Forage", "version": "0.1.0", "description": "Automatically capture browsing signals for your Forage personalized feed", "permissions": ["storage", "tabs"], "host_permissions": ["http://*/*", "https://*/*"], "content_scripts": [ { "matches": ["http://*/*", "https://*/*"], "js": ["content.js"], "run_at": "document_idle" } ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Forage" } }