Examine source code of AWS Console Fixes

Inspect and view changes in AWS Console Fixes 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
{
  "manifest_version": 3,
  "name": "AWS Console Fixes",
  "version": "2.2.0",
  "description": "Fix annoyances in the AWS Management Console.",
  "homepage_url": "https://github.com/stefansundin/aws-console-fixes",
  "author": "Stefan Sundin",
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "background": {
    "scripts": [
      "sw.js"
    ],
    "type": "module"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "19": "img/icon-19.png",
      "38": "img/icon-38.png"
    },
    "default_title": "AWS Console Fixes",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "optional_permissions": [
    "cookies"
  ],
  "host_permissions": [
    "https://*.console.aws.amazon.com/*",
    "https://health.aws.amazon.com/*",
    "https://*.signin.aws.amazon.com/signin*",
    "https://*.signin.aws.amazon.com/oauth*",
    "https://*.signin.aws.amazon.com/switchrole*",
    "https://docs.aws.amazon.com/*",
    "https://aws.amazon.com/*",
    "https://calculator.aws/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "utils.js",
        "defaultOptions.js",
        "scripts/index.js"
      ],
      "matches": [
        "https://*.console.aws.amazon.com/*",
        "https://docs.aws.amazon.com/*",
        "https://health.aws.amazon.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "aws-console-fixes@firefox.stefansundin.com",
      "strict_min_version": "115.0"
    },
    "gecko_android": {
      "strict_min_version": "120.0"
    }
  }
}