AWS SSH SSM RDP Links
Adds SSH, SSM and RDP links to the AWS Console
AWS SSH SSM RDP Links란 무엇입니까?
AWS SSH SSM RDP Links은(는) cryptodude에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds SSH, SSM and RDP links to the AWS Console"입니다.
확장 프로그램 스크린샷
AWS SSH SSM RDP Links 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | AWS SSH SSM RDP Links |
ID | jbnhcgfdngapcelfhekkfmnnlpobhkkb |
공식 URL | https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb |
설명 | Adds SSH, SSM and RDP links to the AWS Console |
파일 크기 | 287 KB |
설치 횟수 | 824 |
현재 버전 | 0.1.13 |
최근 업데이트 | 2019-12-04 |
출시 날짜 | 2019-12-04 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | cryptodude |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links |
도움말 페이지 URL | https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues |
지원되는 언어 | 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" ] } |