tidaldb/applications/forage/extension/manifest.json
jordan c1c5a10fbc chore: reuse reqwest::Client across requests in forage embedder; minor forage updates
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-02-23 23:16:32 -07:00

23 lines
547 B
JSON

{
"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"
}
}