Enhancer for ServiceNow

Enhancer for ServiceNow

Features - Adds a Copy button to the Contact Information box Don't waste your time copying customer data one by one (or copying…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Enhancer for ServiceNow",
  "version": "2.2.2",
  "icons": {
    "16": "./img/icon16.png",
    "32": "./img/icon32.png",
    "128": "./img/icon128.png"
  },
  "web_accessible_resources": [
    "ring.mp3"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.service-now.com/now/workspace/agent/*"
      ],
      "js": [
        "./js/jquery-3.5.1.min.js",
        "./js/chat.js"
      ]
    },
    {
      "matches": [
        "https://*.service-now.com/*"
      ],
      "js": [
        "./js/jquery-3.5.1.min.js",
        "./js/kb.js"
      ]
    }
  ]
}