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

48 lines
869 B
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": [
"*://*.pinduoduo.com/"
],
"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-08-06 16:50:17 +08:00
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"/content.js"
]
}
]
}