AWS SSH SSM RDP Links

Adds SSH, SSM and RDP links to the AWS Console

Cos'è AWS SSH SSM RDP Links?

AWS SSH SSM RDP Links è un'estensione di Chrome sviluppata da cryptodude, e la sua funzione principale è "Adds SSH, SSM and RDP links to the AWS Console".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione AWS SSH SSM RDP Links

Scarica i file di estensione AWS SSH SSM RDP Links in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome AWS SSH SSM RDP Links AWS SSH SSM RDP Links
ID jbnhcgfdngapcelfhekkfmnnlpobhkkb
URL Ufficiale https://chromewebstore.google.com/detail/aws-ssh-ssm-rdp-links/jbnhcgfdngapcelfhekkfmnnlpobhkkb
Descrizione Adds SSH, SSM and RDP links to the AWS Console
Dimensione del File 287 KB
Conteggio Installazioni 824
Versione Corrente 0.1.13
Ultimo Aggiornamento 2019-12-04
Data di Pubblicazione 2019-12-04
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore cryptodude
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links
URL della Pagina di Aiuto https://github.com/hamza-tumturk/aws-ssh-ssm-rdp-links/issues
Lingue Supportate 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"
    ]
}