Extension for AWS SSO
This extension is for AWS Single Sign-On (AWS SSO).
Extension for AWS SSOคืออะไร?
Extension for AWS SSO เป็นส่วนขยายของ Chrome ที่พัฒนาโดย yaggytter และคุณลักษณะหลักของมันคือ "This extension is for AWS Single Sign-On (AWS SSO)."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Extension for AWS SSO
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |