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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds SSH, SSM and RDP links to the AWS Console"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AWS SSH SSM RDP Links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}