G6 Stroke-based Chinese Input Method (Beta)

G6 Stroke-based Chinese Input Method (Beta)

Sample IME for IME extension API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "G6 Stroke-based Chinese Input Method (Beta)",
  "version": "1.0.4",
  "permissions": [
    "input"
  ],
  "manifest_version": 2,
  "minimum_chrome_version": "22",
  "description": "Sample IME for IME extension API",
  "background": {
    "scripts": [
      "js/jquery-3.3.1.min.js",
      "ime.js",
      "init.js",
      "js/sql.js",
      "js/worker.sql.js"
    ]
  },
  "options_page": "options/options.html",
  "input_components": [
    {
      "name": "G6 Stroke-based Chinese Input Method (Beta)",
      "type": "ime",
      "id": "sample_ime_for_ime_extension_api",
      "description": "Sample IME for IME extension API",
      "language": "en-US",
      "layouts": [
        "us::eng"
      ]
    }
  ],
  "web_accessible_resources": [
    "g6.sqlite"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}