tidaldb/applications/forage/extension/manifest.json
2026-02-23 22:41:16 -07:00

23 lines
539 B
JSON

{
"manifest_version": 3,
"name": "Forage",
"version": "0.1.0",
"description": "Automatically capture browsing signals for your Forage personalized feed",
"permissions": ["storage"],
"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"
}
}