idpawssamlinterceptor

idpawssamlinterceptor

This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "idpawssamlinterceptor",
  "description": "This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds",
  "version": "0.1.1",
  "permissions": [
    "webRequest",
    "*://signin.aws.amazon.com/*",
    "*://informatica.okta.com/*",
    "background",
    "downloads"
  ],
  "browser_action": {
    "default_popup": "index.html",
    "default_title": "IDP AWS SAML Interceptor"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "background": {
    "scripts": [
      "app/background.js"
    ]
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  }
}