Files
temu-plugin/src/manifest.development.json

100 lines
2.0 KiB
JSON
Raw Normal View History

2023-08-06 16:50:17 +08:00
{
"manifest_version": 3,
"name": "TEMU助手",
"description": "TEMU助手 - 自动化提高生产效率",
2023-08-08 23:02:41 +08:00
"version": "1.0",
2023-08-06 16:50:17 +08:00
"background": {
"service_worker": "/background.js"
},
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"action": {
},
"host_permissions": [
2023-12-25 21:18:46 +08:00
"*://*.jjcp52.com/",
2024-02-23 10:29:39 +08:00
"*://*.kuajingmaihuo.com/",
2023-09-25 10:13:54 +08:00
"*://*.temu.com/",
2023-12-25 21:18:46 +08:00
"*://*.aliexpress.com/",
"*://*.alicdn.com/",
"*://*.amazon.com/",
2024-05-18 16:06:44 +08:00
"*://*.shein.com/",
2024-06-29 11:51:35 +08:00
"*://*.geiwohuo.com/",
"*://*.ltwebstatic.com/"
2023-08-06 16:50:17 +08:00
],
"permissions": [
"cookies",
2023-08-15 17:09:00 +08:00
"notifications",
"tabs",
"scripting",
2023-08-22 20:16:59 +08:00
"webRequest",
"declarativeNetRequest",
"declarativeNetRequestWithHostAccess",
"declarativeNetRequestFeedback",
2023-08-15 17:09:00 +08:00
"activeTab"
2023-08-06 16:50:17 +08:00
],
2023-08-22 20:16:59 +08:00
"declarative_net_request": {
"rule_resources": [{
"id": "1",
"enabled": true,
"path": "rules_1.json"
2023-12-25 21:18:46 +08:00
},{
"id": "3",
"enabled": true,
"path": "rules_3.json"
2024-05-18 16:06:44 +08:00
},{
"id": "5",
"enabled": true,
"path": "rules_5.json"
},{
"id": "6",
"enabled": true,
"path": "rules_6.json"
2024-06-29 11:51:35 +08:00
},{
"id": "7",
"enabled": true,
"path": "rules_7.json"
},{
"id": "8",
"enabled": true,
"path": "rules_8.json"
},{
"id": "9",
"enabled": true,
"path": "rules_9.json"
2023-08-22 20:16:59 +08:00
}]
},
2023-08-06 16:50:17 +08:00
"content_scripts": [
{
"matches": [
2023-12-25 21:18:46 +08:00
"*://*.aliexpress.com/item/*",
2024-06-29 11:51:35 +08:00
"*://*.amazon.com/*",
"*://*.shein.com/*"
2023-08-06 16:50:17 +08:00
],
"js": [
"/content.js"
]
2024-07-18 14:48:44 +08:00
},
{
"matches": [
"*://*.kuajingmaihuo.com/*"
],
"js": [
"/js/temuSellerContent.js"
]
2023-08-06 16:50:17 +08:00
}
2023-10-07 15:30:41 +08:00
],
"web_accessible_resources": [
{
"resources": [ "js/download.js","js/jszip.min.js","js/FileSaver.js" ],
2024-06-29 11:51:35 +08:00
"matches": [ "*://*.aliexpress.com/*", "*://*.amazon.com/*", "*://*.shein.com/*" ]
2024-07-18 14:48:44 +08:00
},
{
"resources": [ "js/temuSeller.js" ],
"matches": [ "*://*.kuajingmaihuo.com/*" ]
2023-10-07 15:30:41 +08:00
}
2023-08-06 16:50:17 +08:00
]
}