Azure Authorization Header Extractor

Extracts Azure authorization header from requests

Cos'è Azure Authorization Header Extractor?

Azure Authorization Header Extractor è un'estensione di Chrome sviluppata da Elad Perets, e la sua funzione principale è "Extracts Azure authorization header from requests".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Azure Authorization Header Extractor

Scarica i file di estensione Azure Authorization Header Extractor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        *This is not an official Microsoft app*

This extension listens for requests coming out of tabs opened on the Azure portal. It then extract the authorization header from requests sent to Azure. You can copy the header to your clipboard by clicking the extension icon and use it when working directly with Azure REST API

https://msdn.microsoft.com/en-us/library/azure/mt163680.aspx#bk_common

https://msdn.microsoft.com/en-us/library/azure/mt420159.aspx

Source:
https://github.com/eladperets/Azure-Authorization-Header-Extractor                    

Informazioni di Base sull'Estensione

Nome Azure Authorization Header Extractor Azure Authorization Header Extractor
ID ifmjcgakbgnpnppgijcikhpolljgdmlc
URL Ufficiale https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc
Descrizione Extracts Azure authorization header from requests
Dimensione del File 6.01 KB
Conteggio Installazioni 733
Versione Corrente 1.6
Ultimo Aggiornamento 2022-07-14
Data di Pubblicazione 2018-12-12
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Elad Perets
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Azure Authorization Header Extractor",
    "description": "Extracts Azure authorization header from requests",
    "version": "1.6",
    "permissions": [
        "clipboardWrite",
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/*.portal.azure.com\/*",
        "https:\/\/management.azure.com\/*",
        "https:\/\/*.management.azure.com\/*"
    ],
    "action": {
        "default_title": "Show header",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3
}