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 |
Eメール | [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" } } |