Inspect and view changes in Linkbot IDE source codes across current and past versions
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": "Linkbot IDE",
"description": "Control Linkbots with Blockly and Python from Chromebooks",
"version": "2.1.7",
"manifest_version": 2,
"permissions": [
"serial",
{
"fileSystem": [
"write",
"directory"
]
},
"webview",
"storage"
],
"sockets": {
"tcp": {
"connect": "*"
},
"tcpServer": {
"listen": "*"
}
},
"app": {
"background": {
"scripts": [
"background.js"
]
}
},
"sandbox": {
"pages": [
"sandboxed.html",
"python_ide.html"
]
},
"icons": {
"16": "linkbot_blockly_16.png",
"128": "linkbot_blockly_128.png"
},
"minimum_chrome_version": "89"
}