SAML to AWS STS Keys Conversion Multi Profile

Generates credential/config file with multiple AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0).

SAML to AWS STS Keys Conversion Multi Profileคืออะไร?

SAML to AWS STS Keys Conversion Multi Profile เป็นส่วนขยายของ Chrome ที่พัฒนาโดย penchala.services.inc และคุณลักษณะหลักของมันคือ "Generates credential/config file with multiple AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0)."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAML to AWS STS Keys Conversion Multi Profile

ดาวน์โหลดไฟล์ส่วนขยาย SAML to AWS STS Keys Conversion Multi Profile ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Overview
Generates a credentials (and an optional config) file with AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0). It leverages 'assumeRoleWithSAML' API.

Google Chrome Extension which converts a SAML 2.0 assertion to AWS STS Keys (temporary credentials -> AccessKeyId, SecretAccessKey and SessionToken).

This extensions allows you to save keys in different configurations.
1.save keys for recent role logins (up to a maximum of 5).
2.save keys for user provided roles only.
3.save keys for all roles on the login page.

Also have the ability to store a configuration (config) file for storing less sensitive information and add optional keys for this file like region, ca-bundle,....

Also this provides some login page improvements like:
1.Option to configure accounts by color based on a specific term.
2.Optimized the Login Page UI by removing the logo (option to restore it will be available in future updates).
3.Aligned roles horizontally on the Login Page to prevent scrolling and reduce strain on engineers' hands, fingers, and wrists (option to revert to the previous layout will be available in future updates).
4.Replaced radio buttons with role buttons on the Login Page to eliminate extra clicks and enhance user experience (option to switch back to radio buttons will be available in future updates).
5.Moved the Recent Logins section to the top of the Login Page and added the last login time for improved visibility.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SAML to AWS STS Keys Conversion Multi Profile SAML to AWS STS Keys Conversion Multi Profile
ID nhcoglopkiacbogcjdcbhooedkaddimi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/saml-to-aws-sts-keys-conv/nhcoglopkiacbogcjdcbhooedkaddimi
คำอธิบาย Generates credential/config file with multiple AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0).
ขนาดไฟล์ 529 KB
จำนวนการติดตั้ง 82
เวอร์ชันปัจจุบัน 3.3.1
อัปเดตครั้งล่าสุด 2023-07-10
วันที่เผยแพร่ 2023-07-09
ผู้พัฒนา penchala.services.inc
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/penchala-services-inc/chrome-samltoawsstskeys-mp
URL หน้าช่วยเหลือ https://github.com/penchala-services-inc/chrome-samltoawsstskeys-mp
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "author": "Penchala Services Inc.",
    "homepage_url": "https:\/\/github.com\/penchala-services-inc\/chrome-samltoawsstskeys-mp",
    "name": "SAML to AWS STS Keys Conversion Multi Profile",
    "description": "Generates credential\/config file with multiple AWS STS Keys after logging in to AWS webconsole using SSO (SAML 2.0).",
    "version": "3.3.1",
    "icons": {
        "16": "icons\/icon_16.png",
        "32": "icons\/icon_32.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "action": {
        "default_icon": "icons\/icon_32.png",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "service_worker": "background\/script.js"
    },
    "content_scripts": [
        {
            "css": [
                "styles\/styles.css"
            ],
            "matches": [
                "https:\/\/signin.aws.amazon.com\/saml"
            ],
            "js": [
                "lib\/jquery-3.6.2.min.js",
                "content\/script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_page": "options\/options.html",
    "permissions": [
        "webRequest",
        "storage",
        "downloads"
    ],
    "host_permissions": [
        "https:\/\/signin.aws.amazon.com\/saml"
    ]
}