AWS SSH SSM RDP Links
Adds SSH, SSM and RDP links to the AWS Console
AWS SSH SSM RDP Links là gì?
AWS SSH SSM RDP Links là một tiện ích mở rộng Chrome được phát triển bởi cryptodude, và tính năng chính của nó là "Adds SSH, SSM and RDP links to the AWS Console".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AWS SSH SSM RDP Links
Tải xuống các tệp mở rộng AWS SSH SSM RDP Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AWS SSH SSM RDP Links |
ID | jbnhcgfdngapcelfhekkfmnnlpobhkkb |
URL Chính Thức | https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb |
Mô tả | Adds SSH, SSM and RDP links to the AWS Console |
Kích Thước Tệp | 287 KB |
Số Lần Cài Đặt | 824 |
Phiên Bản Hiện Tại | 0.1.13 |
Cập Nhật Lần Cuối | 2019-12-04 |
Ngày Phát Hành | 2019-12-04 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | cryptodude |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links |
URL Trang Trợ Giúp | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |