SlangLang

SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SlangLang",
  "description": "Easy and comprehensive lookup of word definitions (including slang)",
  "version": "1.1",
  "background": {
    "scripts": [
      "javascripts/background.js",
      "bower_components/jquery/dist/jquery.min.js"
    ]
  },
  "browser_action": {
    "default_icon": "images/dictionary-icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "https://ajax.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "bower_components/jquery-ui/jquery-ui.min.js",
        "javascripts/contentscript.js"
      ],
      "css": [
        "styles/tooltip.css"
      ],
      "all_frames": false
    }
  ]
}