My Dictionary

My Dictionary

A very simple and complete dictionary. Select a word and have its definition(s) popped right away!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Dictionary",
  "description": "A very simple and complete dictionary. Select a word and have its definition(s) popped right away!",
  "icons": {
    "128": "icon/icon128.png"
  },
  "background": {
    "page": "page/background.html"
  },
  "version": "1.4.1",
  "options_page": "page/settings.html",
  "browser_action": {
    "default_icon": "icon/icon19.png",
    "default_popup": "page/popup.html",
    "default_title": "My Dictionary: Lookup for definition."
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "js/jquery-2.1.1.min.js",
        "js/function.js",
        "js/iscroll.js",
        "js/myAlert.js",
        "js/injection.js"
      ],
      "css": [
        "css/myAlert.css",
        "css/style.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "http://162.243.83.79:2015/*",
    "http://localhost:8080/*",
    "https://my-dictionary-server.herokuapp.com/",
    "https://my-dictionary-server-143705.appspot.com/"
  ],
  "web_accessible_resources": [
    "res/loader.gif",
    "res/speaker.png",
    "res/similar.png",
    "res/antonym.png",
    "res/thumb-up.png"
  ]
}