Keyword Search (WebExtension)

Keyword Search (WebExtension)

Search in the awesome bar without changing your search engine. Type a k followed by a space, then your search.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "52.0"
    }
  },
  "name": "Keyword Search (WebExtension)",
  "version": "0.4resigned1",
  "description": "Search in the awesome bar without changing your search engine. Type a k followed by a space, then your search.",
  "author": "Mike Kaply",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png"
  },
  "omnibox": {
    "keyword": "k"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "browser_style": true
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}