Azure Authorization Header Extractor
Extracts Azure authorization header from requests
Co je Azure Authorization Header Extractor?
Azure Authorization Header Extractor je rozšíření Chrome vyvinuté Elad Perets, a jeho hlavní funkcí je „Extracts Azure authorization header from requests“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Azure Authorization Header Extractor
Stáhněte si soubory rozšíření Azure Authorization Header Extractor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
*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
Základní Informace o Rozšíření
Název | Azure Authorization Header Extractor |
ID | ifmjcgakbgnpnppgijcikhpolljgdmlc |
Oficiální URL | https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc |
Popis | Extracts Azure authorization header from requests |
Velikost souboru | 6.01 KB |
Počet instalací | 733 |
Aktuální Verze | 1.6 |
Poslední Aktualizace | 2022-07-14 |
Datum Vydání | 2018-12-12 |
Hodnocení | 5.00/5 Celkem 6 Hodnocení |
Vývojář | Elad Perets |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |