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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calls the authorize endpoint with minimum required parameters and prompt=select_account."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Azure AD App Launcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}