Customize AWS Console Header

Customize AWS Console Header

Change AWS Console Header. background color and text label.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_description__",
  "version": "1.0.6",
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.console.aws.amazon.com/*"
      ],
      "js": [
        "js/jquery.min.js",
        "extension.js"
      ],
      "css": [
        "css/extension.css"
      ]
    }
  ],
  "options_ui": {
    "browser_style": true,
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  }
}