40 lines
898 B
JSON
40 lines
898 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "TradeMate - AI 外贸助手",
|
|
"version": "1.0.0",
|
|
"description": "AI-powered foreign trade assistant: translate inquiries, discover customers, generate marketing content",
|
|
"permissions": [
|
|
"storage",
|
|
"contextMenus",
|
|
"activeTab"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"action": {
|
|
"default_popup": "popup/index.html",
|
|
"default_title": "TradeMate",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "background/background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content/content.js"],
|
|
"run_at": "document_end"
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
}
|