Examine source code of Customize AWS Console Header

Inspect and view changes in Customize AWS Console Header source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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.7",
  "default_locale": "en",
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://*.console.aws.amazon.com/*",
        "https://*.console.amazonaws-us-gov.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"
  }
}