SN Search

SN Search

Enables Google Chrome omnibox to search Service-Now tickets by entering "sn" and ticket number.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SN Search",
  "description": "Enables Google Chrome omnibox to search Service-Now tickets by entering \"sn\" and ticket number.",
  "version": "1.0.2",
  "manifest_version": 2,
  "omnibox": {
    "keyword": "sn"
  },
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "minimum_chrome_version": "9",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "storage"
  ]
}