-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
40 lines (40 loc) · 1.09 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
{
"name": "Delivery Slot Notify",
"version": "1.5.2",
"description": "Get notified when delivery windows is available on WholeFoods, PrimeNow, Amazon Fresh, ASDA (UK), and Instacart (US & Canada)",
"permissions": [],
"browser_action": {
"default_title": "Delivery Slot Notify",
"default_popup": "popup/popup.html"
},
"options_page": "option/option.html",
"icons": {
"16": "assets/img/icon16.png",
"32": "assets/img/icon32.png",
"48": "assets/img/icon48.png",
"64": "assets/img/icon64.png",
"128": "assets/img/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://*.amazon.com/*",
"https://*.amazon.in/*",
"https://*.amazon.fr/*",
"https://*.amazon.co.uk/*",
"https://*.instacart.com/*",
"https://*.instacart.ca/*",
"https://*.asda.com/*"
],
"css": [
"content/css/dsn-widget.css"
],
"js": [
"scripts/content.js"
]
}
],
"web_accessible_resources": [],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval' https://sndup.net https://i.ibb.co; object-src 'self'"
}