-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
40 lines (38 loc) · 945 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
{
"manifest_version": 2,
"name": "Amazon Cart CSV exporter",
"description": "This extension allows you to export Cart on Amazon cart site (https://www.amazon.com/gp/cart/view.html)",
"version": "1.0",
"author": "Uxío Fuentefría",
"page_action": {
"default_icon": "icon-19.png",
"default_title": "Amazon Cart CSV Exporter"
},
"background": {
"scripts": ["background.js"],
"persistent": false
},
"icons" : {
"48" : "icon-48.png",
"128" : "icon-128.png"
},
"permissions": [
"declarativeContent",
"*://amazon.com/*",
"*://amazon.co.uk/*",
"*://amazon.fr/*",
"*://amazon.de/*",
"*://amazon.it/*",
"*://amazon.nl/*",
"*://amazon.es/*",
"*://amazon.ie/*",
"*://amazon.co.uk/*",
"*://amazon.ca/*",
"*://amazon.com.mx/*",
"*://amazon.com.au/*",
"*://amazon.com.br/*",
"*://amazon.cn/*",
"*://amazon.in/*",
"*://amazon.jp/*"
]
}