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…

What is aws-helper?

aws-helper is a Chrome extension developed by rotagi37, and its main feature is "this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…".

Extension Screenshots

screenshot
screenshot

Download aws-helper Extension CRX File

Download aws-helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name aws-helper aws-helper
ID cokfoodjbmkjmpabapnpldjfappcdgne
Official URL https://chromewebstore.google.com/detail/aws-helper/cokfoodjbmkjmpabapnpldjfappcdgne
Description this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…
File Size 1.4 MB
Installation Count 26
Current Version 1.0.2.7
Last Updated 2020-07-03
Publish Date 2020-07-02
Rating 5.00/5 Total 1 Ratings
Developer rotagi37
Email [email protected]
Payment Type free
Supported Languages 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"
}