Azure Authorization Header Extractor

Extracts Azure authorization header from requests

Что такое Azure Authorization Header Extractor?

Azure Authorization Header Extractor - это расширение Chrome, разработанное Elad Perets, и его основная функция - "Extracts Azure authorization header from requests".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Azure Authorization Header Extractor

Скачайте файлы расширений 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
Официальный 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
}