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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |