e9939ef9dc
Add GitAtlas deploy assets, DATA_FILE support for isolated server data, and port documentation for sourcing.simosen.cn. Co-authored-by: Cursor <cursoragent@cursor.com>
53 lines
1.4 KiB
JSON
53 lines
1.4 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "选品采购采集器",
|
|
"version": "0.2.0",
|
|
"description": "采集当前淘宝、小红书、1688 等页面可见的图片、链接、标题、价格等信息到选品采购台。",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"action": {
|
|
"default_title": "采集选品",
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"permissions": ["activeTab", "scripting", "storage", "tabs"],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"http://127.0.0.1:4777/*",
|
|
"http://localhost:4777/*",
|
|
"https://*.taobao.com/*",
|
|
"https://*.tmall.com/*",
|
|
"https://*.xiaohongshu.com/*",
|
|
"https://*.xhslink.com/*",
|
|
"https://*.1688.com/*"
|
|
],
|
|
"js": ["content.js"],
|
|
"run_at": "document_idle"
|
|
}
|
|
],
|
|
"host_permissions": [
|
|
"https://*/*",
|
|
"http://*/*",
|
|
"http://127.0.0.1:4777/*",
|
|
"http://localhost:4777/*",
|
|
"https://*.taobao.com/*",
|
|
"https://*.tmall.com/*",
|
|
"https://*.xiaohongshu.com/*",
|
|
"https://*.xhslink.com/*",
|
|
"https://*.1688.com/*"
|
|
]
|
|
}
|