Initial release with production deploy config.
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>
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
{
|
||||
"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/*"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user