LiuChan Chinese Popup Dictionary

LiuChan Chinese Popup Dictionary

A modern lightweight mouse-over popup dictionary for Chinese!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LiuChan Chinese Popup Dictionary",
  "short_name": "LiuChan",
  "version": "1.1.6",
  "options_page": "html/options.html",
  "options_ui": {
    "page": "html/options.html"
  },
  "background": {
    "scripts": [
      "/js/chrome-promise.js",
      "/js/liuchan.js",
      "/js/data.js",
      "/js/fuzzysort.js",
      "/js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "images/toolbar-disabled.png",
    "default_title": "LiuChan Chinese Dictionary"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/liuchancontent.js",
        "js/notepad.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "A modern lightweight mouse-over popup dictionary for Chinese!",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "omnibox": {
    "keyword": "lc"
  },
  "permissions": [
    "storage",
    "tts",
    "contextMenus",
    "notifications",
    "http://*/*"
  ],
  "web_accessible_resources": [
    "css/*",
    "js/liuchancontent.js",
    "images/*"
  ]
}