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”。

擴展截圖

screenshot

下載AWS SSH SSM RDP Links擴展crx文件

下載AWS SSH SSM RDP Links擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 AWS SSH SSM RDP Links
ID jbnhcgfdngapcelfhekkfmnnlpobhkkb
官方網址 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"
    ]
}