Refined AWS Console

Simplifies the Amazon Web Services Console interface.

Refined AWS Console क्या है?

Refined AWS Console Akinjide Bankole द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Simplifies the Amazon Web Services Console interface."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Refined AWS Console एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        - 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"
            ]
        }
    ]
}