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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AWS Show MFA
قم بتنزيل ملفات الامتداد AWS Show MFA بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" } |