LEO Address Bar Search

LEO Address Bar Search

Adds a 'leo' command to the address bar to quickly look up words in the LEO dictionary.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "LEO Address Bar Search",
  "description": "Adds a 'leo' command to the address bar to quickly look up words in the LEO dictionary.",
  "version": "1.0",
  "manifest_version": 2,
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "omnibox": {
    "keyword": "leo"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "options_page": "html/options.html"
}