Forklift for Autotask

Forklift for Autotask

Autotask fixes and improvements.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Forklift for Autotask",
  "version": "0.1.3",
  "description": "Autotask fixes and improvements.",
  "icons": {
    "16": "icons/16.png",
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.autotask.net/Mvc/Framework/Authentication.mvc/Authenticate*",
        "https://*.autotask.net/Mvc/Framework/authentication.mvc/authenticate*"
      ],
      "js": [
        "login.js"
      ]
    },
    {
      "matches": [
        "https://*.autotask.net/Mvc/Contracts/InvoiceViewer.mvc/InvoiceDetail*"
      ],
      "all_frames": true,
      "js": [
        "invoice-preview.js"
      ]
    },
    {
      "matches": [
        "https://*.autotask.net/Mvc/ServiceDesk/TicketDetail.mvc*"
      ],
      "js": [
        "ticket-detail.js"
      ]
    }
  ]
}