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
官方網址 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"
}