-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
38 lines (38 loc) · 1008 Bytes
/
manifest.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"author": "https://github.com/cabbage89/Nop.Plugin.DropShipping.AliExpress.Doc",
"background": {
"scripts": [ "jquery-3.5.0.min.js", "background.js" ]
},
"browser_action": {
"default_icon": "logo.png",
"default_title": "ProductHunter",
"default_popup": "popup.html"
},
"description": "__MSG_pluginDesc__",
"manifest_version": 2,
"name": "__MSG_pluginName__",
"short_name": "nopProductSync",
"permissions": [
"http://*/",
"https://*/",
"webRequest",
"tabs",
"contextMenus",
"webRequestBlocking",
"storage"
],
"default_locale": "en",
"version": "1.0",
"content_scripts": [
{
"matches": [ "https://www.alibaba.com/product-detail/*" ],
"js": [ "jquery-3.5.0.min.js", "constant.js", "market/alibaba.js" ],
"css": [ "main.css" ]
},
{
"matches": [ "https://www.aliexpress.com/item/*" ],
"js": [ "jquery-3.5.0.min.js", "constant.js", "market/aliexpress.js" ],
"css": [ "main.css" ]
}
]
}