Files
2025-10-12 12:43:13 +08:00

40 lines
861 B
JSON

{
"manifest_version": 3,
"name": "蓝带AI客服助手",
"version": "1.0",
"description": "一款利用AI自动回复小红书商家私信的插件。",
"permissions": [
"storage",
"tabs",
"scripting",
"webRequest",
"webRequestBlocking",
"debugger"
],
"host_permissions": [
"https://*.xiaohongshu.com/*",
"http://203.156.197.220:9876/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["https://*.xiaohongshu.com/*"],
"js": ["content.js"]
}
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
}
}