Examine source code of Kamuy Console

Inspect and view changes in Kamuy Console 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": "Kamuy Console",
  "description": "Console application dedicated to IchigoKamuy and IchigoJam connected USB-Serial(UART)",
  "version": "0.1",
  "manifest_version": 2,
  "app": {
    "background": {
      "scripts": [
        "background.js"
      ]
    }
  },
  "icons": {
    "16": "images/ichigo16.png",
    "48": "images/ichigo48.png",
    "128": "images/ichigo128.png"
  },
  "permissions": [
    "serial",
    "storage",
    "clipboardRead"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js"
      ]
    }
  ]
}