Examine source code of HyperDuino Media Linker

Inspect and view changes in HyperDuino 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": "HyperDuino Media Linker",
  "description": "Connect Internet media to HyperDuino sensors and actuators.",
  "short_name": "HyperDuino",
  "version": "1.1.5",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "app/js/background.js"
      ],
      "persistent": false
    }
  },
  "icons": {
    "16": "app/img/hd-16.png",
    "128": "app/img/hd-128.png",
    "256": "app/img/hd-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-d13spj4873s27msstm8rrh88sl6875h1.apps.googleusercontent.com"
  },
  "sockets": {
    "tcpServer": {
      "listen": [
        "127.0.0.1:8000"
      ]
    }
  },
  "webview": {
    "partitions": [
      {
        "name": "trusted",
        "accessible_resources": [
          "app/*"
        ]
      }
    ]
  }
}