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).".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου 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 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"
    }
}