-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathmanifest.json
35 lines (33 loc) · 976 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
{
"manifest_version": 2,
"name": "淘宝分销助手",
"description": "淘宝分销助手是一个Chrome插件。用来帮助有分销业务,需要下采购单的淘宝卖家提高下采购单的效率。详情见:https://github.com/wickila/autotrade",
"version": "0.9.0.1",
"icons": { "16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png" },
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"activeTab",
"tabs",
"storage",
"*://*/*"
],
"content_scripts": [
{
"matches": ["https://trade.taobao.com/trade/itemlist/*","https://gongxiao.tmall.com/distributor/order/*"],
"js": ["jquery.js", "extensions/main.js"]
},
{
"matches": ["https://trade.taobao.com/trade/memo/*"],
"js": ["jquery.js", "extensions/mark.js"]
},
{
"matches": ["*://*/*"],
"js": ["jquery.js","extensions/general.js"]
}
]
}