Extension for AWS SSO
This extension is for AWS Single Sign-On (AWS SSO).
Extension for AWS SSO là gì?
Extension for AWS SSO là một tiện ích mở rộng Chrome được phát triển bởi yaggytter, và tính năng chính của nó là "This extension is for AWS Single Sign-On (AWS SSO).".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Extension for AWS SSO
Tải xuống các tệp mở rộng Extension for AWS SSO dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Extension for AWS SSO |
ID | ejjegcnihofdahmbbhekhkcnpflljeej |
URL Chính Thức | https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej |
Mô tả | This extension is for AWS Single Sign-On (AWS SSO). |
Kích Thước Tệp | 266 KB |
Số Lần Cài Đặt | 1,894 |
Phiên Bản Hiện Tại | 1.3.3 |
Cập Nhật Lần Cuối | 2023-07-29 |
Ngày Phát Hành | 2021-06-13 |
Đánh Giá | 4.80/5 Tổng số 5 Đánh Giá |
Nhà Phát Triển | yaggytter |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/yaggytter/chrome-extension-awssso |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |