-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
82 lines (68 loc) · 1.91 KB
/
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"manifest_version": 2,
"version": "2.0",
"name": "Discount Bandit",
"description": "Get Your pro ducts data into stores to analyze it",
"permissions": [
"<all_urls>",
"storage"
],
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
}
},
"content_scripts": [
{
"matches": [
"https://*.amazon.ae/*" ,
"https://*.amazon.com/*" ,
"https://*.amazon.ca/*" ,
"https://*.amazon.co.uk/*" ,
"https://*.amazon.de/*" ,
"https://*.amazon.fr/*" ,
"https://*.amazon.it/*" ,
"https://*.amazon.sa/*" ,
"https://*.amazon.es/*" ,
"https://*.amazon.pl/*" ,
"https://*.amazon.com.tr/*" ,
"https://*.amazon.com.au/*" ,
"https://*.amazon.com.br/*" ,
"https://*.amazon.cn/*" ,
"https://*.amazon.eg/*" ,
"https://*.amazon.co.jp/*" ,
"https://*.amazon.in/*" ,
"https://*.amazon.com.mx/*" ,
"https://*.amazon.nl/*" ,
"https://*.amazon.sg/*" ,
"https://*.amazon.se/*" ,
"https://*.amazon.com.be/*",
"https://*.argos.co.uk/product/*",
"https://*.ebay.com/itm/*",
"https://*.noon.com/*/p/*"
],
"js" : [ "resources/apexcharts.js" ,"Product.js",
"Stores/Amazon.js",
"Stores/Argos.js",
"Stores/Ebay.js",
"Stores/Noon.js",
"functions.js" , "stores.js"],
"css": ["resources/css/style.css"]
}
],
"web_accessible_resources": [
"resources/images/stores/*",
"resources/images/bandit.png"
],
"icons": {
"16": "resources/images/bandit_square.png",
"32": "resources/images/bandit_square.png",
"48": "resources/images/bandit_square.png",
"64": "resources/images/bandit_square.png",
"96": "resources/images/bandit_square.png"
}
}