AWS SSH SSM RDP Links
Adds SSH, SSM and RDP links to the AWS Console
Qu'est-ce que AWS SSH SSM RDP Links ?
AWS SSH SSM RDP Links est une extension Chrome développée par cryptodude, et sa fonction principale est "Adds SSH, SSM and RDP links to the AWS Console".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS SSH SSM RDP Links
Téléchargez les fichiers d'extension AWS SSH SSM RDP Links 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
Adds SSH, SSM or RDP links to your AWS console. This chrome extension looks at the Platform field and if it says 'windows' then it adds RDP links to all the applicable fields that have IPs or hostnames. Otherwise, it adds SSM to the Instance ID field and SSH links to all the IP and hostname fields. Project forked from: https://github.com/natefox/aws-ssh-rdp-links
Informations de Base sur l'Extension
Nom | AWS SSH SSM RDP Links |
ID | jbnhcgfdngapcelfhekkfmnnlpobhkkb |
URL Officiel | https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb |
Description | Adds SSH, SSM and RDP links to the AWS Console |
Taille du Fichier | 287 KB |
Nombre d'Installations | 824 |
Version Actuelle | 0.1.13 |
Dernière Mise à Jour | 2019-12-04 |
Date de Publication | 2019-12-04 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | cryptodude |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links |
URL de la Page d'Aide | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AWS SSH SSM RDP Links", "description": "Adds SSH, SSM and RDP links to the AWS Console", "homepage_url": "https:\/\/github.com\/hamza-tumturk\/aws-ssh-ssm-rdp-links", "version": "0.1.13", "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/ec2\/*" ], "js": [ "page.js" ], "css": [ "page.css" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "chrome_style": true }, "browser_action": { "default_icon": { "19": "icons\/icon19.png", "38": "icons\/icon38.png" }, "default_popup": "options.html", "default_title": "AWS SSH SSM RDP Links" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ] } |