41 lines
864 B
JSON
41 lines
864 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Social Media Comment Assistant",
|
|
"version": "1.0.0",
|
|
"description": "A sidebar extension that captures comments, analyzes them, and suggests replies",
|
|
"action": {
|
|
"default_title": "Comment Assistant",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"permissions": [
|
|
"activeTab",
|
|
"scripting",
|
|
"storage",
|
|
"sidePanel"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"side_panel": {
|
|
"default_path": "sidebar.html"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
]
|
|
} |