idpawssamlinterceptor
This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds
什么是idpawssamlinterceptor?
idpawssamlinterceptor是由bob2build.2020开发的Chrome扩展程序,该扩展的主要功能是“This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds”。
扩展截图
下载idpawssamlinterceptor扩展crx文件
下载idpawssamlinterceptor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A chrome extention to intercept Saml Assersion passed from IDP (Identity Provider like OKTA) to AWS. The SAML assertion can be used to generate CLI credentials which can be used in other tools such as awscli, terraform etc. This chrome extention, listens for requests to signin requests to signin.aws.amazon.com and holds the SAML assertion metadata in memory. The extension provides a popup to generate CLI credentials and download them. This tool is inspired from * https://github.com/prolane/samltoawsstskeys * https://aws.amazon.com/blogs/security/how-to-implement-federated-api-and-cli-access-using-saml-2-0-and-ad-fs/
扩展基本信息
名称 | idpawssamlinterceptor |
ID | albcpjbmlieijoffjiklpmlppfaacegn |
官方URL | https://chromewebstore.google.com/detail/idpawssamlinterceptor/albcpjbmlieijoffjiklpmlppfaacegn |
简介 | This extention intercepts SAML workflow between your IDP (e.g Okta) and AWS and generates of AWS CLI creds |
文件大小 | 1.24 MB |
安装次数 | 147 |
当前版本 | 0.1.1 |
更新时间 | 2019-02-12 |
上架时间 | 2019-02-12 |
评分 | 5.00/5 共1次评分 |
开发者 | bob2build.2020 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/bob2build/idpawssamlinterceptor-chromextension |
帮助页面URL | https://github.com/bob2build/idpawssamlinterceptor-chromextension |
支持的语言 | en |
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" } } |