Examine source code of Simple AWS Launcher

Inspect and view changes in Simple AWS Launcher 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": "Simple AWS Launcher",
  "description": "Simple popup launcher for hundreds of AWS services. Just press ctrl(cmd)+shift+L, or click an icon to open.",
  "version": "2.1.5",
  "background": {
    "service_worker": "script/background.js"
  },
  "icons": {
    "38": "icon/38icon.png",
    "48": "icon/48icon.png",
    "128": "icon/128icon.png"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+L",
        "windows": "Ctrl+Shift+L",
        "mac": "Command+Shift+L",
        "linux": "Ctrl+Shift+L"
      }
    }
  }
}