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
公式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"
    ]
}