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是由rotagi37开发的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…”。

扩展截图

screenshot
screenshot

下载aws-helper扩展crx文件

下载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"
}