HighLight Search

HighLight Search

Highlight a word and immediately get its definition!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "HighLight Search",
  "description": "Highlight a word and immediately get its definition!",
  "version": "0.0.1",
  "icons": {
    "128": "./images/logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.js",
        "bower_components/xml-to-json/xml.js",
        "scripts/onload.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  }
}