Examine source code of AWS Console Bar

Inspect and view changes in AWS Console Bar 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": "AWS Console Bar",
  "version": "1.24.0",
  "description": "Increase your productivity in AWS Console with aws-console-bar Chrome Extension",
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "unlimitedStorage"
  ],
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.console.aws.amazon.com/*"
      ],
      "css": [
        "my-styles.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background-service-worker.js"
  },
  "storage": {
    "sync": {
      "popupText": "Boost your productivity using AWS Console"
    }
  }
}