Examine source code of Granted

Inspect and view changes in Granted 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": "Granted",
  "description": "manifest.json description",
  "version": "0.2.3",
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "96": "icon/96.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.awsapps.com/start/*"
      ],
      "js": [
        "content-scripts/allow_access_confirm.js"
      ]
    },
    {
      "matches": [
        "https://device.sso.af-south-1.amazonaws.com/*",
        "https://device.sso.ap-east-1.amazonaws.com/*",
        "https://device.sso.ap-northeast-1.amazonaws.com/*",
        "https://device.sso.ap-northeast-2.amazonaws.com/*",
        "https://device.sso.ap-northeast-3.amazonaws.com/*",
        "https://device.sso.ap-south-1.amazonaws.com/*",
        "https://device.sso.ap-southeast-1.amazonaws.com/*",
        "https://device.sso.ap-southeast-2.amazonaws.com/*",
        "https://device.sso.ap-southeast-3.amazonaws.com/*",
        "https://device.sso.ca-central-1.amazonaws.com/*",
        "https://device.sso.eu-central-1.amazonaws.com/*",
        "https://device.sso.eu-north-1.amazonaws.com/*",
        "https://device.sso.eu-south-1.amazonaws.com/*",
        "https://device.sso.eu-west-1.amazonaws.com/*",
        "https://device.sso.eu-west-2.amazonaws.com/*",
        "https://device.sso.eu-west-3.amazonaws.com/*",
        "https://device.sso.me-south-1.amazonaws.com/*",
        "https://device.sso.sa-east-1.amazonaws.com/*",
        "https://device.sso.us-east-1.amazonaws.com/*",
        "https://device.sso.us-east-2.amazonaws.com/*",
        "https://device.sso.us-gov-east-1.amazonaws.com/*",
        "https://device.sso.us-gov-west-1.amazonaws.com/*",
        "https://device.sso.us-west-1.amazonaws.com/*",
        "https://device.sso.us-west-2.amazonaws.com/*"
      ],
      "js": [
        "content-scripts/content.js"
      ]
    }
  ]
}