K-State ServiceNow Title Changer

K-State ServiceNow Title Changer

Changes the title of the Service-Now page/tab to make it more helpful.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "K-State ServiceNow Title Changer",
  "version": "1.0.7",
  "description": "Changes the title of the Service-Now page/tab to make it more helpful.",
  "author": "George Walker",
  "homepage_url": "http://www.georgewwalker.com/projects/sntitlechanger",
  "icons": {
    "128": "servicedesk.png"
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "tabs",
    "http://kstate.service-now.com/*",
    "https://kstate.service-now.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://kstate.service-now.com/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ]
}