Azure Authorization Header Extractor
Extracts Azure authorization header from requests
什么是Azure Authorization Header Extractor?
Azure Authorization Header Extractor是由Elad Perets开发的Chrome扩展程序,该扩展的主要功能是“Extracts Azure authorization header from requests”。
扩展截图
下载Azure Authorization Header Extractor扩展crx文件
下载Azure Authorization Header Extractor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
*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
扩展基本信息
名称 | Azure Authorization Header Extractor |
ID | ifmjcgakbgnpnppgijcikhpolljgdmlc |
官方URL | https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc |
简介 | Extracts Azure authorization header from requests |
文件大小 | 6.01 KB |
安装次数 | 733 |
当前版本 | 1.6 |
更新时间 | 2022-07-14 |
上架时间 | 2018-12-12 |
评分 | 5.00/5 共6次评分 |
开发者 | Elad Perets |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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 } |