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 là gì?

aws-helper là một tiện ích mở rộng Chrome được phát triển bởi rotagi37, và tính năng chính của nó là "this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng aws-helper

Tải xuống các tệp mở rộng aws-helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên aws-helper aws-helper
ID cokfoodjbmkjmpabapnpldjfappcdgne
URL Chính Thức https://chromewebstore.google.com/detail/aws-helper/cokfoodjbmkjmpabapnpldjfappcdgne
Mô tả this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…
Kích Thước Tệp 1.4 MB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.0.2.7
Cập Nhật Lần Cuối 2020-07-03
Ngày Phát Hành 2020-07-02
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển rotagi37
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}