46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
|
|
{
|
|||
|
|
"manifest_version": 3,
|
|||
|
|
"name": "千帆发布助手",
|
|||
|
|
"version": "1.0.0",
|
|||
|
|
"description": "小红书千帆店铺矩阵发布工具 - 自动化批量发布笔记",
|
|||
|
|
"permissions": [
|
|||
|
|
"storage",
|
|||
|
|
"activeTab",
|
|||
|
|
"scripting",
|
|||
|
|
"alarms",
|
|||
|
|
"notifications"
|
|||
|
|
],
|
|||
|
|
"host_permissions": [
|
|||
|
|
"http://localhost:3000/*",
|
|||
|
|
"https://ark.xiaohongshu.com/*",
|
|||
|
|
"https://www.xiaohongshu.com/*"
|
|||
|
|
],
|
|||
|
|
"background": {
|
|||
|
|
"service_worker": "background.js"
|
|||
|
|
},
|
|||
|
|
"content_scripts": [
|
|||
|
|
{
|
|||
|
|
"matches": [
|
|||
|
|
"https://ark.xiaohongshu.com/*",
|
|||
|
|
"https://www.xiaohongshu.com/*"
|
|||
|
|
],
|
|||
|
|
"js": ["content_scripts/qianfan_publish.js"],
|
|||
|
|
"run_at": "document_idle"
|
|||
|
|
}
|
|||
|
|
],
|
|||
|
|
"action": {
|
|||
|
|
"default_popup": "popup/popup.html",
|
|||
|
|
"default_icon": {
|
|||
|
|
"16": "icons/icon16.png",
|
|||
|
|
"48": "icons/icon48.png",
|
|||
|
|
"128": "icons/icon128.png"
|
|||
|
|
}
|
|||
|
|
},
|
|||
|
|
"options_page": "options/options.html",
|
|||
|
|
"icons": {
|
|||
|
|
"16": "icons/icon16.png",
|
|||
|
|
"48": "icons/icon48.png",
|
|||
|
|
"128": "icons/icon128.png"
|
|||
|
|
}
|
|||
|
|
}
|