forked from espruino/EspruinoWebIDE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
35 lines (35 loc) · 812 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
{
"name": "Espruino Web IDE",
"short_name": "Espruino IDE",
"description": "A Terminal and Graphical code Editor for Espruino JavaScript Microcontrollers",
"version": "0.59.0",
"app": {
"background": {
"scripts": ["js/background.js"]
}
},
"icons": {
"128": "img/icon_128.png",
"256": "img/icon_256.png",
"512": "img/icon_512.png"
},
"permissions" : [
"serial",
"audioCapture",
"videoCapture",
{"fileSystem": ["write", "retainEntries", "directory"]},
"storage",
"http://*/",
"https://*/"
],
"sockets": { "tcp" : { "connect": "*" } },
"manifest_version": 2,
"url_handlers": {
"espruino_code": {
"title": "Load code into the Espruino Web IDE",
"matches": [
"http://www.espruino.com/webide*"
]
}
}
}