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 |
官方網址 | 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" } } |