The Dataino Serial Chrome App interface your Arduino via serial / USB and through www.dataino.it you can create controls, send data…
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": "Arduino to Dataino Serial Proxy",
"version": "2.0.0",
"manifest_version": 2,
"permissions": [
"serial",
"http://www.dataino.it/",
"http://www.dataino.loc/",
"http://localhost/",
"http://127.0.0.1/",
"http://37.59.113.1/",
"http://iot.dataino.it/"
],
"externally_connectable": {
"matches": [
"http://37.59.113.1/*",
"http://127.0.0.1/*",
"http://localhost/*",
"http://dataino.loc/*",
"http://*.dataino.it/*",
"http://www.dataino.loc/*",
"http://iot.dataino.it/*"
]
},
"minimum_chrome_version": "23",
"icons": {
"16": "icon_16.png",
"128": "icon_128.png"
},
"app": {
"background": {
"scripts": [
"background.js",
"lib/live.js"
]
}
}
}