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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    ]
}