AZ Insights Heatmap

AZ Insights Heatmap

Changes color of AI tiles depending on health percentage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "AZ Insights Heatmap",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Changes color of AI tiles depending on health percentage",
  "homepage_url": "http://andrewiankidd.co.uk",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://portal.azure.com/*"
      ],
      "js": [
        "js/inject.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icons/icon48.png",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage"
  ]
}