AWS Colours

AWS Colours

Changes the New AWS console header colour based on the Region and/or Account you're using

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AWS Colours",
  "version": "2.0.3",
  "description": "Changes the New AWS console header colour based on the Region and/or Account you're using",
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "32": "images/logo32.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    },
    "default_title": "AWS Colours",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.console.aws.amazon.com/*"
      ],
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/content.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "alarms"
  ]
}