Azure AD App Launcher

Calls the authorize endpoint with minimum required parameters and prompt=select_account.

Azure AD App Launcherคืออะไร?

Azure AD App Launcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย astaykov และคุณลักษณะหลักของมันคือ "Calls the authorize endpoint with minimum required parameters and prompt=select_account."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Azure AD App Launcher

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

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

                        This extension launches the /authorize (v2.0) endpoint of Azure AD using the current context. It takes the application (client) id and tenant id from the current tab. You have to be anywhere on any app registration. Then just click the extension icon and a new tab with authorization request will be opened. The authorized endpoint is called with the following attributes:
  scope=openid+profile+email
  prompt=select_account
  nonce=nonce
  response_type=id_token
  response_mode=fragment

Via the popup, you can change the response_type and also add an optional scope.

FIX in 0.8:
 * tenant id was not correctly taken when domain name is too long                    

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

ชื่อ Azure AD App Launcher Azure AD App Launcher
ID dgfmoiiecjedmgimnhcchpcgbopppeil
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/azure-ad-app-launcher/dgfmoiiecjedmgimnhcchpcgbopppeil
คำอธิบาย Calls the authorize endpoint with minimum required parameters and prompt=select_account.
ขนาดไฟล์ 46.14 KB
จำนวนการติดตั้ง 328
เวอร์ชันปัจจุบัน 0.8
อัปเดตครั้งล่าสุด 2021-04-21
วันที่เผยแพร่ 2021-04-18
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา astaykov
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Azure AD App Launcher",
    "action": {
        "default_popup": "\/popup\/html\/appLauncher.html",
        "default_icon": {
            "16": "\/images\/AppLauncher16.png",
            "32": "\/images\/AppLauncher32.png",
            "48": "\/images\/AppLauncher48.png",
            "128": "\/images\/AppLauncher128.png"
        }
    },
    "manifest_version": 3,
    "version": "0.8",
    "description": "Calls the authorize endpoint with minimum required parameters and prompt=select_account.",
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": [],
    "icons": {
        "16": "\/images\/AppLauncher16.png",
        "32": "\/images\/AppLauncher32.png",
        "48": "\/images\/AppLauncher48.png",
        "128": "\/images\/AppLauncher128.png"
    }
}