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