AWS SSO Extender
Organize access to the AWS console & other AWS SSO (Identity Center) applications
AWS SSO Extenderคืออะไร?
AWS SSO Extender เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://wtfender.com และคุณลักษณะหลักของมันคือ "Organize access to the AWS console & other AWS SSO (Identity Center) applications"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS SSO Extender
ดาวน์โหลดไฟล์ส่วนขยาย AWS SSO Extender ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
⭐ Quickly access your Favorite AWS SSO apps
🎨 Customize your profiles, roles & AWS console
🔑 Assume IAM roles from your SSO profiles ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| ID | pojoaiboolahdaedebpjgnllehpofkep |
| URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/aws-sso-extender/pojoaiboolahdaedebpjgnllehpofkep |
| คำอธิบาย | Organize access to the AWS console & other AWS SSO (Identity Center) applications |
| ขนาดไฟล์ | 794 KB |
| จำนวนการติดตั้ง | 1,051 |
| เวอร์ชันปัจจุบัน | 1.8.5 |
| อัปเดตครั้งล่าสุด | 2024-03-01 |
| วันที่เผยแพร่ | 2023-02-14 |
| คะแนน | 5.00/5 รวมทั้งหมด 5 คะแนน |
| ผู้พัฒนา | https://wtfender.com |
| อีเมล | [email protected] |
| ประเภทการชำระเงิน | free |
| เว็บไซต์ส่วนขยาย | https://github.com/WTFender/aws-sso-extender |
| URL หน้าช่วยเหลือ | https://github.com/WTFender/aws-sso-extender/issues |
| ภาษาที่รองรับ | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AWS SSO Extender",
"description": "Organize access to the AWS console & other AWS SSO (Identity Center) applications",
"version": "1.8.5",
"author": "WTFender",
"homepage_url": "https:\/\/github.com\/WTFender\/aws-sso-extender",
"manifest_version": 3,
"icons": {
"16": "icons\/red\/16.png",
"32": "icons\/red\/32.png",
"128": "icons\/red\/128.png"
},
"options_ui": {
"open_in_tab": true,
"page": "src\/options.html"
},
"action": {
"default_popup": "src\/popup.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "MacCtrl+Shift+F"
}
},
"openProfile1": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "MacCtrl+Shift+1"
},
"description": "Open Profile #1"
},
"openProfile2": {
"suggested_key": {
"default": "Ctrl+Shift+2",
"mac": "MacCtrl+Shift+2"
},
"description": "Open Profile #2"
},
"openProfile3": {
"suggested_key": {
"default": "Ctrl+Shift+3",
"mac": "MacCtrl+Shift+3"
},
"description": "Open Profile #3"
}
},
"background": {
"service_worker": "src\/entry\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.awsapps.com\/start*"
],
"js": [
"src\/entry\/aws-sso.js"
]
},
{
"matches": [
"https:\/\/*.console.aws.amazon.com\/*"
],
"js": [
"src\/entry\/aws-console.js"
]
},
{
"matches": [
"https:\/\/signin.aws.amazon.com\/switchrole?*"
],
"js": [
"src\/entry\/aws-switchrole.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'none'; worker-src 'none'; img-src 'self' data: https:\/\/static.global.sso.amazonaws.com\/"
},
"cross_origin_opener_policy": {
"value": "same-origin"
},
"permissions": [
"storage"
],
"optional_permissions": [
"history"
]
} | |