AWS EC2 Price Assistant

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

什么是AWS EC2 Price Assistant?

AWS EC2 Price Assistant是由dan开发的Chrome扩展程序,该扩展的主要功能是“Find out the real monthly or yearly cost of using AWS assets and resources.”。

扩展截图

screenshot

下载AWS EC2 Price Assistant扩展crx文件

下载AWS EC2 Price Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 AWS EC2 Price Assistant AWS EC2 Price Assistant
ID pnedkbpbhonogjkcnlnegbnogclldkdc
官方URL https://chromewebstore.google.com/detail/aws-ec2-price-assistant/pnedkbpbhonogjkcnlnegbnogclldkdc
简介 Find out the real monthly or yearly cost of using AWS assets and resources.
文件大小 47.88 KB
安装次数 73
当前版本 1.2
更新时间 2019-04-28
上架时间 2019-04-28
开发者 dan
付费类型 free
扩展官网 https://github.com/dantheman213/aws-ec2-price-assistant
支持的语言 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"
    ]
}