pxt-calliope/clients/chrome/manifest.json
Peli de Halleux 7465ffeb3b Chromeextension (#499)
* updates to chrome extension manifest

* update manifest with chrome extension id
2017-08-07 22:33:59 -07:00

30 lines
588 B
JSON

{
"app": {
"background": {
"scripts": [ "background.js" ]
}
},
"manifest_version": 2,
"name": "makecode.microbit.org",
"version": "0.8.0",
"author": "Microsoft Corporation",
"short_name": "makecode.microbit.org",
"description": "Extension for https://makecode.microbit.org.",
"offline_enabled": true,
"icons": {
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"serial",
"usb"
],
"externally_connectable": {
"matches": [ "*://localhost/*", "https://makecode.microbit.org/*", "https://*.microbit.org/*" ]
}
}