Taiwan Traditional Chinese Dictionary

Taiwan Traditional Chinese Dictionary

Taiwan's Traditional Chinese Dictionary. Query with simple mouse select word, Convenient Result show up in current window.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "__MSG_extShortName__",
  "description": "__MSG_extDescription__",
  "default_locale": "zh_TW",
  "version": "2.2.0",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*"
      ],
      "js": [
        "jquery/jquery-1.11.3.min.js",
        "mengdian.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "permissions": [
    "https://*.moedict.tw/",
    "storage",
    "identity"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "web_accessible_resources": [
    "images/*.png"
  ]
}