Examine source code of Webduino Uploader

Inspect and view changes in Webduino Uploader 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": "Webduino Uploader",
  "description": "Used to upload hex files to an Arduino.",
  "version": "0.1",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.bundle.js"
      ]
    }
  },
  "externally_connectable": {
    "matches": [
      "http://127.0.0.1:*/*"
    ]
  },
  "permissions": [
    "serial"
  ],
  "icons": {
    "16": "avrgirl-16.png",
    "128": "avrgirl-128.png"
  }
}