AWS SSH SSM RDP Links

Adds SSH, SSM and RDP links to the AWS Console

Was ist AWS SSH SSM RDP Links?

AWS SSH SSM RDP Links ist eine Chrome-Erweiterung, die von cryptodude entwickelt wurde, und ihr Hauptmerkmal ist "Adds SSH, SSM and RDP links to the AWS Console".

Erweiterungsscreenshots

screenshot

AWS SSH SSM RDP Links-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS SSH SSM RDP Links-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name AWS SSH SSM RDP Links AWS SSH SSM RDP Links
ID jbnhcgfdngapcelfhekkfmnnlpobhkkb
Offizielle URL https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb
Beschreibung Adds SSH, SSM and RDP links to the AWS Console
Dateigröße 287 KB
Installationsanzahl 824
Aktuelle Version 0.1.13
Letztes Update 2019-12-04
Veröffentlichungsdatum 2019-12-04
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler cryptodude
Zahlungsart free
Erweiterungswebsite https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links
Hilfeseite URL https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues
Unterstützte Sprachen 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"
    ]
}