Spiceworks Portal Auto-Update

Spiceworks Portal Auto-Update

Fixes that irritating issue where tickets are not updated when new responses have been added.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Spiceworks Portal Auto-Update",
  "description": "Fixes that irritating issue where tickets are not updated when new responses have been added.",
  "version": "1.0.5",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://on.spiceworks.com/*"
      ],
      "css": [
        "resources/css/main.css"
      ],
      "js": [
        "worker.js",
        "helpers/storage.js",
        "helpers/requests.js",
        "helpers/notify.js",
        "resources/jquery.3.6.0.js"
      ]
    }
  ]
}