aws-helper

this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…

Τι είναι το aws-helper;

Το aws-helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rotagi37, και η κύρια λειτουργία του είναι "this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης aws-helper

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

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

                        this extension will set the tab icon according to the page you are currently viewing.
it will also make it possible to open ELB form the route53 DNS list
also from couldfront you will be able to double click on s3 and it will open in a new tab 

the icon will give you a fast access to your recent aws console pages + easy way to find the rest                    

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

Όνομα aws-helper aws-helper
ID cokfoodjbmkjmpabapnpldjfappcdgne
Επίσημο URL https://chromewebstore.google.com/detail/aws-helper/cokfoodjbmkjmpabapnpldjfappcdgne
Περιγραφή this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…
Μέγεθος Αρχείου 1.4 MB
Αριθμός Εγκαταστάσεων 26
Τρέχουσα Έκδοση 1.0.2.7
Τελευταία Ενημέρωση 2020-07-03
Ημερομηνία Δημοσίευσης 2020-07-02
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής rotagi37
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "\/bg.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icon.png",
            "32": "icon.png",
            "48": "icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "AWS Helper"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-3.2.1.min.js",
                "icons.js",
                "cscript.js"
            ],
            "matches": [
                "https:\/\/*.aws.amazon.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "devtools_page": "devtools.html",
    "icons": {
        "16": "icon.png",
        "32": "icon.png",
        "48": "icon.png"
    },
    "manifest_version": 2,
    "name": "aws-helper",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "https:\/\/*.aws.amazon.com\/*"
    ],
    "version": "1.0.2.7"
}