AWS Show MFA

Make the MFA window show on AWS signin

AWS Show MFAคืออะไร?

AWS Show MFA เป็นส่วนขยายของ Chrome ที่พัฒนาโดย luke.eisenbraun และคุณลักษณะหลักของมันคือ "Make the MFA window show on AWS signin"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Show MFA

ดาวน์โหลดไฟล์ส่วนขยาย AWS Show MFA ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        If you or your company uses an MFA token for AWS this will make signing in slightly quicker. Instead of clicking the check-box to show the MFA field the field will now automatically show as well as remove the check-box for easy tabbing. If you choose to show the browser action (icon), you can set your signin url in the options and it will take you there. If you are signed into chrome, the "signin" url will sync across devices.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
คำอธิบาย Make the MFA window show on AWS signin
ขนาดไฟล์ 13.26 KB
จำนวนการติดตั้ง 145
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2015-02-23
วันที่เผยแพร่ 2015-02-23
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา luke.eisenbraun
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Luke Eisenbraun",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon-48.png"
    },
    "content_scripts": [
        {
            "js": [
                "js\/mfashower.js"
            ],
            "matches": [
                "https:\/\/signin.aws.amazon.com\/*"
            ]
        }
    ],
    "description": "Make the MFA window show on AWS signin",
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "manifest_version": 2,
    "name": "AWS Show MFA",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "version": "1.2"
}