27 lines
583 B
JSON
27 lines
583 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "SiteCompanion",
|
|
"version": "0.4.4",
|
|
"description": "AI companion for site-bound text extraction and tasks.",
|
|
"permissions": ["storage", "activeTab"],
|
|
"host_permissions": ["<all_urls>"],
|
|
"action": {
|
|
"default_title": "SiteCompanion",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"options_ui": {
|
|
"page": "settings.html",
|
|
"open_in_tab": true
|
|
}
|
|
}
|