-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmanifest.json
29 lines (29 loc) · 866 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
{
"name": "Alexa, make me a sandwich",
"description": "Turning your Amazon Echo into a Sandwich Artisan since 2015.",
"icons": {
"128": "images/logo-128.png",
"48": "images/logo-48.png"
},
"manifest_version": 2,
"content_scripts": [
{
"matches": ["http://echo.amazon.com/*"],
"js": ["jquery.js", "q.js", "jimmyJohns.js", "listener.js", "artisan.js"],
"css": ["artisan.css"]
}
],
"background": {
"scripts": ["background.js"]
},
"page_action": {
"default_icon": {
"19": "images/logo-19.png",
"38": "images/logo-38.png"
},
"default_title": "Alexa, make me a sandwich"
},
"permissions": ["https://online.jimmyjohns.com/*"],
"version": "0.0.1",
"web_accessible_resources": [ "login.html", "welcome.html", "tutorial.html", "images/logo.png" ]
}