Azure Authorization Header Extractor
Extracts Azure authorization header from requests
What is Azure Authorization Header Extractor?
Azure Authorization Header Extractor is a Chrome extension developed by Elad Perets, and its main feature is "Extracts Azure authorization header from requests".
Extension Screenshots
Download Azure Authorization Header Extractor Extension CRX File
Download Azure Authorization Header Extractor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
*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 Extension Basic Information
| Name | |
| ID | ifmjcgakbgnpnppgijcikhpolljgdmlc |
| Official URL | https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc |
| Description | Extracts Azure authorization header from requests |
| File Size | 6.01 KB |
| Installation Count | 733 |
| Current Version | 1.6 |
| Last Updated | 2022-07-14 |
| Publish Date | 2018-12-12 |
| Rating | 5.00/5 Total 6 Ratings |
| Developer | Elad Perets |
| [email protected] | |
| Payment Type | free |
| Supported Languages | 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
} | |