Examine source code of SKK Japanese Input

Inspect and view changes in SKK Japanese Input 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": "SKK Japanese Input",
  "version": "1.5.0",
  "manifest_version": 3,
  "description": "SKK implementation for ChromeOS Input Method API",
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "input_components": [
    {
      "name": "SKK(for US keyboard)",
      "type": "ime",
      "id": "net.hydrakecat.skk.us",
      "description": "An SKK clone",
      "language": "ja",
      "layouts": [
        "us"
      ]
    },
    {
      "name": "SKK(for Japanese keyboard)",
      "type": "ime",
      "id": "net.hydrakecat.skk.jp",
      "description": "An SKK clone",
      "language": "ja",
      "layouts": [
        "jp"
      ]
    },
    {
      "name": "SKK(for Dvorak keyboard)",
      "type": "ime",
      "id": "net.hydrakecat.skk.dvorak",
      "description": "An SKK clone",
      "language": "ja",
      "layouts": [
        "us-dvorak"
      ]
    }
  ],
  "permissions": [
    "input",
    "storage",
    "unlimitedStorage"
  ]
}