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.」です。
拡張機能のスクリーンショット
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 |
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" ] } |