AWS EC2 Price Assistant

Find out the real monthly or yearly cost of using AWS assets and resources.

AWS EC2 Price Assistant là gì?

AWS EC2 Price Assistant là một tiện ích mở rộng Chrome được phát triển bởi dan, và tính năng chính của nó là "Find out the real monthly or yearly cost of using AWS assets and resources.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AWS EC2 Price Assistant

Tải xuống các tệp mở rộng AWS EC2 Price Assistant 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

                        Add monthly and yearly pricing calculations to AWS EC2 on-demand and spot instance pricing pages on AWS.

The following pages will be updated when this extension is running.

* https://aws.amazon.com/ec2/pricing/on-demand/

* https://aws.amazon.com/ec2/spot/pricing/

NOTE: Prices are calculated using today's prices, AWS may change prices or policies in future. Different rates may be available for long term usage. Use this information at your own risk.                    

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

Tên AWS EC2 Price Assistant AWS EC2 Price Assistant
ID pnedkbpbhonogjkcnlnegbnogclldkdc
URL Chính Thức https://chromewebstore.google.com/detail/aws-ec2-price-assistant/pnedkbpbhonogjkcnlnegbnogclldkdc
Mô tả Find out the real monthly or yearly cost of using AWS assets and resources.
Kích Thước Tệp 47.88 KB
Số Lần Cài Đặt 73
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2019-04-28
Ngày Phát Hành 2019-04-28
Nhà Phát Triển dan
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dantheman213/aws-ec2-price-assistant
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AWS EC2 Price Assistant",
    "description": "Find out the real monthly or yearly cost of using AWS assets and resources.",
    "homepage_url": "https:\/\/github.com\/dantheman213\/aws-ec2-price-assistant",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "AWS EC2 Price Assistant"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/aws.amazon.com\/ec2\/pricing\/on-demand\/",
                "*:\/\/aws.amazon.com\/ec2\/spot\/pricing\/"
            ],
            "js": [
                "extension.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "contextMenus"
    ]
}