Omnibox Launcher

Omnibox Launcher

Provides the ability to search and launch installed chrome apps from the Omnibox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Omnibox Launcher",
  "author": "Christopher Ciufo",
  "version": "2.0",
  "description": "Provides the ability to search and launch installed chrome apps from the Omnibox",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "24": "assets/icons/icon_24.png",
    "32": "assets/icons/icon_32.png",
    "64": "assets/icons/icon_64.png",
    "128": "assets/icons/icon_128.png"
  },
  "permissions": [
    "management"
  ],
  "omnibox": {
    "keyword": "run"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "lib/fuse.min.js",
      "lib/lodash.min.js",
      "background.js"
    ]
  }
}