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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dan และคุณลักษณะหลักของมันคือ "Find out the real monthly or yearly cost of using AWS assets and resources."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS EC2 Price Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}