pxt-calliope/clients/chrome/manifest.json

31 lines
636 B
JSON
Raw Normal View History

2016-06-22 18:43:03 +02:00
{
"app": {
"background": {
"scripts": [ "background.js" ]
}
},
"manifest_version": 2,
"name": "code the micro:bit",
2016-06-22 23:48:51 +02:00
"version": "0.6.0",
2016-06-22 18:43:03 +02:00
"author": "Microsoft Corporation",
"short_name": "code the micro:bit",
2016-06-22 23:48:51 +02:00
"description": "Extension for https://codethemicrobit.com.",
"homepage_url": "https://codethemicrobit.com",
"offline_enabled": "true",
2016-06-22 18:43:03 +02:00
"icons": {
"48": "logo48.png",
"128": "logo128.png"
},
"permissions": [
"serial",
"usb"
],
"externally_connectable": {
2016-06-22 23:48:51 +02:00
"matches": [ "*://localhost/*", "https://codethemicrobit.com/*", "https://*.codethemicrobit.com/*" ]
2016-06-22 18:43:03 +02:00
}
}