Examine source code of Kito Serial TCP Bridge

Inspect and view changes in Kito Serial TCP Bridge 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,
  "name": "Kito Serial TCP Bridge",
  "description": "Kito.io Support software, kito Serial TCP communication bridge",
  "version": "0.0.1",
  "app": {
    "background": {
      "scripts": [
        "src/background.js"
      ]
    }
  },
  "icons": {
    "128": "icons/128.png"
  },
  "permissions": [
    "serial"
  ],
  "sockets": {
    "tcp": {
      "connect": [
        "*:*"
      ]
    }
  }
}