AWS Account Helper

AWS Account Helper

Shows an extra header to identify the current AWS Account

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AWS Account Helper",
  "version": "2.1.0",
  "description": "Shows an extra header to identify the current AWS Account",
  "options_page": "views/options.html",
  "options_ui": {
    "page": "options/options.html"
  },
  "action": {
    "default_icon": {
      "16": "images/aah16.png",
      "32": "images/aah32.png",
      "48": "images/aah32.png",
      "128": "images/aah32.png"
    },
    "default_popup": "popup/popup.html"
  },
  "icons": {
    "16": "images/aah16.png",
    "32": "images/aah32.png",
    "48": "images/aah32.png",
    "128": "images/aah32.png"
  },
  "permissions": [
    "declarativeContent",
    "notifications",
    "storage",
    "unlimitedStorage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.console.aws.amazon.com/*",
        "*://console.aws.amazon.com/*"
      ],
      "js": [
        "lib/jquery-3.5.1.js",
        "content/content_script.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_idle"
    }
  ]
}