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”。

擴展截圖

screenshot

下載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 Azure Authorization Header Extractor
ID ifmjcgakbgnpnppgijcikhpolljgdmlc
官方網址 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
}