An app that lets you control Mirobot using a number of different programming tools
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Mirobot",
"description": "An app that lets you control Mirobot using a number of different programming tools",
"version": "0.7.2",
"manifest_version": 2,
"minimum_chrome_version": "23",
"permissions": [
"storage"
],
"app": {
"background": {
"scripts": [
"chrome.js"
]
}
},
"icons": {
"16": "assets/mirobot-16.png",
"48": "assets/mirobot-48.png",
"128": "assets/mirobot-128.png"
},
"sandbox": {
"pages": [
"blockly/index.html",
"javascript/index.html",
"python/index.html"
]
}
}