AWS SSO Extender
Organize access to the AWS console & other AWS SSO (Identity Center) applications
什么是AWS SSO Extender?
AWS SSO Extender是由https://wtfender.com开发的Chrome扩展程序,该扩展的主要功能是“Organize access to the AWS console & other AWS SSO (Identity Center) applications”。
扩展截图
下载AWS SSO Extender扩展crx文件
下载AWS SSO Extender扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
⭐ Quickly access your Favorite AWS SSO apps 🎨 Customize your profiles, roles & AWS console 🔑 Assume IAM roles from your SSO profiles
扩展基本信息
名称 | AWS SSO Extender |
ID | pojoaiboolahdaedebpjgnllehpofkep |
官方URL | https://chromewebstore.google.com/detail/aws-sso-extender/pojoaiboolahdaedebpjgnllehpofkep |
简介 | Organize access to the AWS console & other AWS SSO (Identity Center) applications |
文件大小 | 794 KB |
安装次数 | 1,051 |
当前版本 | 1.8.5 |
更新时间 | 2024-03-01 |
上架时间 | 2023-02-14 |
评分 | 5.00/5 共5次评分 |
开发者 | https://wtfender.com |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/WTFender/aws-sso-extender |
帮助页面URL | https://github.com/WTFender/aws-sso-extender/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS SSO Extender", "description": "Organize access to the AWS console & other AWS SSO (Identity Center) applications", "version": "1.8.5", "author": "WTFender", "homepage_url": "https:\/\/github.com\/WTFender\/aws-sso-extender", "manifest_version": 3, "icons": { "16": "icons\/red\/16.png", "32": "icons\/red\/32.png", "128": "icons\/red\/128.png" }, "options_ui": { "open_in_tab": true, "page": "src\/options.html" }, "action": { "default_popup": "src\/popup.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+F", "mac": "MacCtrl+Shift+F" } }, "openProfile1": { "suggested_key": { "default": "Ctrl+Shift+1", "mac": "MacCtrl+Shift+1" }, "description": "Open Profile #1" }, "openProfile2": { "suggested_key": { "default": "Ctrl+Shift+2", "mac": "MacCtrl+Shift+2" }, "description": "Open Profile #2" }, "openProfile3": { "suggested_key": { "default": "Ctrl+Shift+3", "mac": "MacCtrl+Shift+3" }, "description": "Open Profile #3" } }, "background": { "service_worker": "src\/entry\/background.js", "type": "module" }, "content_scripts": [ { "matches": [ "https:\/\/*.awsapps.com\/start*" ], "js": [ "src\/entry\/aws-sso.js" ] }, { "matches": [ "https:\/\/*.console.aws.amazon.com\/*" ], "js": [ "src\/entry\/aws-console.js" ] }, { "matches": [ "https:\/\/signin.aws.amazon.com\/switchrole?*" ], "js": [ "src\/entry\/aws-switchrole.js" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'none'; worker-src 'none'; img-src 'self' data: https:\/\/static.global.sso.amazonaws.com\/" }, "cross_origin_opener_policy": { "value": "same-origin" }, "permissions": [ "storage" ], "optional_permissions": [ "history" ] } |