AWS SSH SSM RDP Links
Adds SSH, SSM and RDP links to the AWS Console
What is AWS SSH SSM RDP Links?
AWS SSH SSM RDP Links is a Chrome extension developed by cryptodude, and its main feature is "Adds SSH, SSM and RDP links to the AWS Console".
Extension Screenshots
Download AWS SSH SSM RDP Links Extension CRX File
Download AWS SSH SSM RDP Links extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | AWS SSH SSM RDP Links |
ID | jbnhcgfdngapcelfhekkfmnnlpobhkkb |
Official URL | https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb |
Description | Adds SSH, SSM and RDP links to the AWS Console |
File Size | 287 KB |
Installation Count | 824 |
Current Version | 0.1.13 |
Last Updated | 2019-12-04 |
Publish Date | 2019-12-04 |
Rating | 5.00/5 Total 1 Ratings |
Developer | cryptodude |
Payment Type | free |
Extension Website | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links |
Help Page URL | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues |
Supported Languages | 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" ] } |