Refined AWS Console

Simplifies the Amazon Web Services Console interface.

Τι είναι το Refined AWS Console;

Το Refined AWS Console είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Akinjide Bankole, και η κύρια λειτουργία του είναι "Simplifies the Amazon Web Services Console interface.".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        - Pin More! Do More! (Quick navigation appears below header)
- Reduce navigation to services tab with shortcuts (Just press ?)
- Switch between AWS assigned roles
- Switch between AWS available regions
- Show custom navigation menus (Sign Out and more)
- Hide unused navigation menus

Learn more about Refined AWS Console at https://github.com/akinjide/refined-aws

CHANGELOG at https://github.com/akinjide/refined-aws/blob/master/CHANGELOG.md
- 2.6.1@latest: Publish FireFox addon on site                    

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

Όνομα Refined AWS Console Refined AWS Console
ID ockddcaogdonfmcfhdblbflchnjgiilc
Επίσημο URL https://chromewebstore.google.com/detail/refined-aws-console/ockddcaogdonfmcfhdblbflchnjgiilc
Περιγραφή Simplifies the Amazon Web Services Console interface.
Μέγεθος Αρχείου 53.19 KB
Αριθμός Εγκαταστάσεων 98
Τρέχουσα Έκδοση 2.6.1
Τελευταία Ενημέρωση 2020-12-02
Ημερομηνία Δημοσίευσης 2020-02-03
Προγραμματιστής Akinjide Bankole
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/akinjide/refined-aws
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/akinjide/refined-aws/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Refined AWS Console",
    "version": "2.6.1",
    "description": "Simplifies the Amazon Web Services Console interface.",
    "homepage_url": "https:\/\/www.github.com\/akinjide\/refined-aws",
    "manifest_version": 2,
    "minimum_chrome_version": "62",
    "permissions": [
        "storage",
        "alarms"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "main.js"
        ]
    },
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                "https:\/\/console.aws.amazon.com\/*",
                "https:\/\/*.console.aws.amazon.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "jquery.slim.min.js",
                "browser-polyfill.min.js",
                "content.js"
            ]
        }
    ]
}