Examine source code of Console Recorder for AWS

Inspect and view changes in Console Recorder for AWS 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
{
  "name": "Console Recorder for AWS",
  "version": "0.3.34",
  "manifest_version": 2,
  "description": "Records actions made in the AWS Management Console and outputs the equivalent CLI/SDK commands and CloudFormation template.",
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "background": {
    "scripts": [
      "bg.js"
    ]
  },
  "icons": {
    "128": "icon-128.png"
  },
  "browser_action": {
    "browser_style": false,
    "default_icon": {
      "128": "icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "permissions": [
    "clipboardWrite",
    "webRequest",
    "webRequestBlocking",
    "tabs",
    "notifications",
    "storage",
    "debugger",
    "*://*.aws.amazon.com/*",
    "*://*.amazonaws.com/*",
    "*://developer.amazon.com/*",
    "*://*.amazonaws-us-gov.com/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}