Chrodic

Chrodic

A mouseover dictionary for Google Chrome™

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Chrodic",
  "version": "0.3.2",
  "description": "A mouseover dictionary for Google Chrome™",
  "permissions": [
    "https://ankiweb.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "translation_box.js",
        "translation_task.js",
        "chrodic.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "icons": {
    "128": "icon128.png"
  },
  "manifest_version": 2
}