Azure AD App Launcher

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

Azure AD App Launcher란 무엇입니까?

Azure AD App Launcher은(는) astaykov에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calls the authorize endpoint with minimum required parameters and prompt=select_account."입니다.

확장 프로그램 스크린샷

screenshot

Azure AD App Launcher 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}