Extension for AWS SSO

This extension is for AWS Single Sign-On (AWS SSO).

Extension for AWS SSO क्या है?

Extension for AWS SSO yaggytter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is for AWS Single Sign-On (AWS SSO)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Extension for AWS SSO एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}