Extension for AWS SSO
This extension is for AWS Single Sign-On (AWS SSO).
Hvad er Extension for AWS SSO?
Extension for AWS SSO er en Chrome-udvidelse udviklet af yaggytter, og dens hovedfunktion er "This extension is for AWS Single Sign-On (AWS SSO).".
Udvidelsesskærmbilleder
Download Extension for AWS SSO-udvidelses-CRX-fil
Download Extension for AWS SSO-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Extension for AWS SSO |
ID | ejjegcnihofdahmbbhekhkcnpflljeej |
Officiel URL | https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej |
Beskrivelse | This extension is for AWS Single Sign-On (AWS SSO). |
Filstørrelse | 266 KB |
Antal Installationer | 1,894 |
Nuværende Version | 1.3.3 |
Senest Opdateret | 2023-07-29 |
Udgivelsesdato | 2021-06-13 |
Bedømmelse | 4.80/5 Samlet 5 Bedømmelser |
Udvikler | yaggytter |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/yaggytter/chrome-extension-awssso |
Understøttede Sprog | 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" } } |