Examine source code of Bonadrone platform

Inspect and view changes in Bonadrone platform 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",
  "manifest_version": 2,
  "minimum_chrome_version": "38",
  "version": "1.9.0",
  "author": "Several",
  "name": "Bonadrone platform",
  "short_name": "BD",
  "description": "Crossplatform configuration tool for educational robotics",
  "offline_enabled": true,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "default_locale": "en",
  "app": {
    "background": {
      "scripts": [
        "eventPage.js"
      ],
      "persistent": false
    }
  },
  "sandbox": {
    "pages": [
      "tabs/scratch-s.html"
    ]
  },
  "permissions": [
    "https://www.google-analytics.com/",
    "https://maps.googleapis.com/*",
    "https://*.github.com/",
    "https://*.githubusercontent.com/",
    "https://*.amazonaws.com/",
    "https://*.tinkercad.com/",
    "http://platform.bonadrone.com/images/challenges/*",
    "serial",
    "usb",
    {
      "usbDevices": [
        {
          "vendorId": 6421,
          "productId": 30583
        }
      ]
    },
    "storage",
    "http://*/*",
    "https://*/*",
    "fileSystem",
    "fileSystem.write",
    "fileSystem.retainEntries",
    "fileSystem.directory",
    "notifications",
    "webview",
    "alwaysOnTopWindows"
  ],
  "icons": {
    "128": "images/bonadrone_icon_128.png"
  }
}