AWS role switch

Quickly switch between roles on the AWS console

Τι είναι το AWS role switch;

Το AWS role switch είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον stuemmel.jan, και η κύρια λειτουργία του είναι "Quickly switch between roles on the AWS console".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης AWS role switch

Λήψη αρχείων επέκτασης AWS role switch σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Browser plugin to quickly switch between roles on the AWS console. This plugin shows a popup with aws roles you configured via a config ini file. It can be triggered via a keyboard combination, a role can then be selected via up and down arrow keys.

Features

* Edit your roles in a ./aws/config style ini format via a code editor
* Group roles together
* Store ~2k roles
* Sync config via sync storage on different devices
* Open popup via Ctrl + Shift + l
* Navigate through roles with arrow keys, press enter to assume
* Neat dark/light theme based on your browser settings

Why

You can store up to 5 roles in the AWS console. If you have a bunch of roles over many accounts this browser plugin might be a good choice to store your roles. It can store roughly 200 roles and syncs it with browsers on other devices.

You might also checkout aws-extend-switch-roles which is another browser plugin to switch roles. When i started to write this plugin i learned a lot of how the switching works. Originally i intended to contribute to this repository because i needed some features that aren’t implemented there. However, it’s written in a very oldschool style of Javascript, so i decided to rewrite it and give it a modern paint.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα AWS role switch AWS role switch
ID mjgccddjodbakimbncbmobdgpmoddalc
Επίσημο URL https://chromewebstore.google.com/detail/aws-role-switch/mjgccddjodbakimbncbmobdgpmoddalc
Περιγραφή Quickly switch between roles on the AWS console
Μέγεθος Αρχείου 3.19 MB
Αριθμός Εγκαταστάσεων 608
Τρέχουσα Έκδοση 0.10.0
Τελευταία Ενημέρωση 2023-08-11
Ημερομηνία Δημοσίευσης 2022-07-18
Αξιολόγηση 5.00/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής stuemmel.jan
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/janstuemmel/aws-role-switch
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/janstuemmel/aws-role-switch/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.10.0",
    "name": "AWS role switch",
    "description": "Quickly switch between roles on the AWS console",
    "homepage_url": "https:\/\/github.com\/janstuemmel\/aws-role-switch",
    "options_ui": {
        "page": "options\/options.html",
        "browser_style": false,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/*.console.amazonaws-us-gov.com\/*",
                "https:\/\/*.console.amazonaws.cn\/*",
                "https:\/\/lightsail.aws.amazon.com\/*",
                "https:\/\/health.aws.amazon.com\/*",
                "https:\/\/phd.amazonaws-us-gov.com\/*",
                "https:\/\/phd.amazonaws.cn\/*"
            ],
            "js": [
                "content\/aws-console.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/signin.aws.amazon.com\/*"
            ],
            "js": [
                "content\/aws-signin.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "manifest_version": 3,
    "action": {
        "default_title": "AWS role switch",
        "default_popup": "popup\/popup.html",
        "browser_style": true,
        "default_icon": {
            "128": "assets\/icon128.png"
        }
    },
    "permissions": [
        "storage",
        "cookies"
    ],
    "host_permissions": [
        "https:\/\/*.console.aws.amazon.com\/*",
        "https:\/\/*.console.amazonaws-us-gov.com\/*",
        "https:\/\/*.console.amazonaws.cn\/*",
        "https:\/\/lightsail.aws.amazon.com\/*",
        "https:\/\/health.aws.amazon.com\/*",
        "https:\/\/phd.amazonaws-us-gov.com\/*",
        "https:\/\/phd.amazonaws.cn\/*"
    ],
    "commands": {
        "_execute_action": {
            "description": "Open the popup window",
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            }
        }
    },
    "background": {
        "service_worker": "background\/background.js"
    }
}