AWS AlwaysON

Stay logged in to AWS console and get STS credentials for CLI access.

Τι είναι το AWS AlwaysON;

Το AWS AlwaysON είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ilya Tovbin, και η κύρια λειτουργία του είναι "Stay logged in to AWS console and get STS credentials for CLI access.".

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

screenshot
screenshot

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

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

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

                        This extension enhances the daily work with AWS when using Google Workspace (formerly GSuite) as it's Identity Provider.

Assuming you already have everything configured on both sides, this extension will help you with the following:

- Keep your AWS Web Console session refreshed. You will not have to press the AWS link in the Google apps section every hour.
- Get temporary STS credentials for CLI access (Replacing tools like aws-google-auth)

After installing this extension you need to configure multiple options to get the extension to work properly. Each property has an info tooltip which will explain everything in more detail.

This project is completely open source, so you can check it for any security concerns you might have.

v1.2.1
- Updater client now supports both Windows and Linux. Check the GIthub page for more info.
- You can now select the name of the SAML Provider you set in AWS. It was statically set to 'gsuite' till now.
- Default values for options are now set each time you start the extension and not only on the first run.

Full changelog available in GitHub.                    

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

Όνομα AWS AlwaysON AWS AlwaysON
ID lfplgkokagjgodoeojaodphmjdhlpega
Επίσημο URL https://chromewebstore.google.com/detail/aws-alwayson/lfplgkokagjgodoeojaodphmjdhlpega
Περιγραφή Stay logged in to AWS console and get STS credentials for CLI access.
Μέγεθος Αρχείου 124 KB
Αριθμός Εγκαταστάσεων 258
Τρέχουσα Έκδοση 1.2.1
Τελευταία Ενημέρωση 2023-01-22
Ημερομηνία Δημοσίευσης 2022-05-09
Αξιολόγηση 5.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής Ilya Tovbin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/ilyatbn/aws_alwayson
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/ilyatbn/aws_alwayson
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/ilyatbn/aws_alwayson/blob/master/privacy.md
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AWS AlwaysON",
    "description": "Stay logged in to AWS console and get STS credentials for CLI access.",
    "version": "1.2.1",
    "action": {
        "default_popup": "menu.html"
    },
    "icons": {
        "16": "img\/icon16.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "permissions": [
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "https:\/\/accounts.google.com\/*",
        "https:\/\/signin.aws.amazon.com\/*",
        "https:\/\/console.aws.amazon.com\/*",
        "https:\/\/sts.amazonaws.com\/*",
        "http:\/\/localhost\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}