Extension for AWS SSO
This extension is for AWS Single Sign-On (AWS SSO).
什么是Extension for AWS SSO?
Extension for AWS SSO是由yaggytter开发的Chrome扩展程序,该扩展的主要功能是“This extension is for AWS Single Sign-On (AWS SSO).”。
扩展截图
下载Extension for AWS SSO扩展crx文件
下载Extension for AWS SSO扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension is for AWS IAM Identity Center (The old name is AWS SSO). As for now, this extension is providing only following functions. You will see what am I using Account Name and Permission Set for current console at AWS console's header, AWS console header's color will almost be red if account name has 'Production' in it, and to bring favorite accounts to the top on the SSO login page. (You can customize header colors using regular expressions for account names on the extension option page. Favorites too.) Source code is here https://github.com/yaggytter/chrome-extension-awssso
扩展基本信息
名称 | Extension for AWS SSO |
ID | ejjegcnihofdahmbbhekhkcnpflljeej |
官方URL | https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej |
简介 | This extension is for AWS Single Sign-On (AWS SSO). |
文件大小 | 266 KB |
安装次数 | 1,894 |
当前版本 | 1.3.3 |
更新时间 | 2023-07-29 |
上架时间 | 2021-06-13 |
评分 | 4.80/5 共5次评分 |
开发者 | yaggytter |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/yaggytter/chrome-extension-awssso |
支持的语言 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "default_locale": "en", "version": "1.3.3", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.awsapps.com\/start#\/", "https:\/\/*.awsapps.com\/start\/*", "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/health.aws.amazon.com\/*" ], "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "icons\/fav.png" ], "matches": [ "https:\/\/*.awsapps.com\/*", "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/health.aws.amazon.com\/*" ] } ], "background": { "service_worker": "background.js" }, "options_ui": { "page": "options.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |