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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cryptodude และคุณลักษณะหลักของมันคือ "Adds SSH, SSM and RDP links to the AWS Console"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS SSH SSM RDP Links

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}