Azure Authorization Header Extractor
Extracts Azure authorization header from requests
Co to jest Azure Authorization Header Extractor?
Azure Authorization Header Extractor to rozszerzenie Chrome opracowane przez Elad Perets, a jego główną funkcją jest „Extracts Azure authorization header from requests”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Azure Authorization Header Extractor
Pobierz pliki rozszerzeń Azure Authorization Header Extractor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
*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
Podstawowe informacje o rozszerzeniu
Nazwa | Azure Authorization Header Extractor |
ID | ifmjcgakbgnpnppgijcikhpolljgdmlc |
Oficjalny URL | https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc |
Opis | Extracts Azure authorization header from requests |
Rozmiar pliku | 6.01 KB |
Liczba instalacji | 733 |
Aktualna Wersja | 1.6 |
Ostatnia Aktualizacja | 2022-07-14 |
Data Publikacji | 2018-12-12 |
Ocena | 5.00/5 Łącznie 6 Oceny |
Deweloper | Elad Perets |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |