Autotask Dashboard extension by Reset

Autotask Dashboard extension by Reset

Makes it possible to display Autotask Dashboards on the wall.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "activeTab",
    "*://*/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.autotask.net/Mvc/Framework/Navigation.mvc/Landing"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "global.js",
        "main.js"
      ]
    }
  ],
  "description": "Makes it possible to display Autotask Dashboards on the wall.",
  "name": "Autotask Dashboard extension by Reset",
  "version": "1.2",
  "web_accessible_resources": [
    "*"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icon.png",
      "48": "icon.png",
      "128": "icon.png"
    },
    "default_title": "Autotask Dashboard extension by Reset",
    "default_popup": "config.html"
  }
}