Refined AWS Console

Simplifies the Amazon Web Services Console interface.

Qu'est-ce que Refined AWS Console ?

Refined AWS Console est une extension Chrome développée par Akinjide Bankole, et sa fonction principale est "Simplifies the Amazon Web Services Console interface.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Refined AWS Console

Téléchargez les fichiers d'extension Refined AWS Console au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        - 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                    

Informations de Base sur l'Extension

Nom Refined AWS Console Refined AWS Console
ID ockddcaogdonfmcfhdblbflchnjgiilc
URL Officiel https://chromewebstore.google.com/detail/refined-aws-console/ockddcaogdonfmcfhdblbflchnjgiilc
Description Simplifies the Amazon Web Services Console interface.
Taille du Fichier 53.19 KB
Nombre d'Installations 98
Version Actuelle 2.6.1
Dernière Mise à Jour 2020-12-02
Date de Publication 2020-02-03
Développeur Akinjide Bankole
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/akinjide/refined-aws
URL de la Page d'Aide https://github.com/akinjide/refined-aws/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}