-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
57 lines (53 loc) · 991 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"manifest_version": 2,
"name": "Amazon seller",
"short_name": "Amazon seller",
"description": "Amazon seller",
"author": "Alexis Richard",
"version": "1.0.3",
"permissions": [
"https://sellercentral.amazon.com/gp/orders-v2/*",
"storage",
"tabs"
],
"background": {
"scripts": [
"js/jquery.js",
"js/common.js",
"js/background.js"
]
},
"content_scripts": [
{
"js": [
"js/jquery.js",
"js/content.js"
],
"matches": [
"https://sellercentral.amazon.com/gp/orders-v2/*"
],
"run_at": "document_end"
}
],
"page_action": {
"default_icon": {
"19": "img/128.png",
"38": "img/128.png"
},
"default_title": "Amazon Orders",
"default_popup": "pages/popup.html"
},
"web_accessible_resources": [
],
"icons": {
"16": "img/128.png",
"18": "img/128.png",
"19": "img/128.png",
"32": "img/128.png",
"38": "img/128.png",
"48": "img/128.png",
"64": "img/128.png",
"96": "img/128.png",
"128": "img/128.png"
}
}