ConnectWise Service Ticket Tab Updater

ConnectWise Service Ticket Tab Updater

Sets the Service Ticket number and title as the name of the ticket tab!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ConnectWise Service Ticket Tab Updater",
  "description": "Sets the Service Ticket number and title as the name of the ticket tab!",
  "version": "1.01",
  "author": "Jaime Barriga",
  "icons": {
    "16": "cnorth16.png",
    "48": "cnorth48.png",
    "128": "cnorth128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.myconnectwise.net/*"
      ],
      "js": [
        "connectwisetickettitletag.js"
      ],
      "run_at": "document_end"
    }
  ]
}