Examine source code of MakerBit Media Linker

Inspect and view changes in MakerBit Media Linker 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": "MakerBit Media Linker",
  "description": "Connect Internet media to MakerBit sensors and actuators.",
  "short_name": "MakerBit",
  "version": "1.1.5",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "app/js/background.js"
      ],
      "persistent": false
    }
  },
  "icons": {
    "16": "app/img/mb-16.png",
    "128": "app/img/mb-128.png",
    "256": "app/img/mb-256.png"
  },
  "permissions": [
    "http://*/*",
    "https://*/*",
    "http://localhost:8000/*",
    "serial",
    "identity",
    "fileSystem",
    "identity.email",
    "unlimitedStorage",
    "browser",
    "webview",
    "fullscreen"
  ],
  "oauth2": {
    "scopes": [
      "https://www.googleapis.com/auth/drive",
      "https://www.googleapis.com/auth/urlshortener"
    ],
    "client_id": "138092914569-l96c4ek59vshrc4trvlicjhvmpip1med.apps.googleusercontent.com"
  },
  "sockets": {
    "tcpServer": {
      "listen": [
        "127.0.0.1:8000"
      ]
    }
  },
  "webview": {
    "partitions": [
      {
        "name": "trusted",
        "accessible_resources": [
          "app/*"
        ]
      }
    ]
  }
}