SKK Japanese Input

SKK Japanese Input

SKK implementation for ChromeOS Input Method API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SKK Japanese Input",
  "version": "1.3.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"
  ]
}