AWS EC2 Price Assistant
Find out the real monthly or yearly cost of using AWS assets and resources.
Qu'est-ce que AWS EC2 Price Assistant ?
AWS EC2 Price Assistant est une extension Chrome développée par dan, et sa fonction principale est "Find out the real monthly or yearly cost of using AWS assets and resources.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS EC2 Price Assistant
Téléchargez les fichiers d'extension AWS EC2 Price Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | AWS EC2 Price Assistant |
ID | pnedkbpbhonogjkcnlnegbnogclldkdc |
URL Officiel | https://chromewebstore.google.com/detail/aws-ec2-price-assistant/pnedkbpbhonogjkcnlnegbnogclldkdc |
Description | Find out the real monthly or yearly cost of using AWS assets and resources. |
Taille du Fichier | 47.88 KB |
Nombre d'Installations | 73 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2019-04-28 |
Date de Publication | 2019-04-28 |
Développeur | dan |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/dantheman213/aws-ec2-price-assistant |
Langues Prises en Charge | 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" ] } |