Azure Authorization Header Extractor

Extracts Azure authorization header from requests

Azure Authorization Header Extractor là gì?

Azure Authorization Header Extractor là một tiện ích mở rộng Chrome được phát triển bởi Elad Perets, và tính năng chính của nó là "Extracts Azure authorization header from requests".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Azure Authorization Header Extractor

Tải xuống các tệp mở rộng Azure Authorization Header Extractor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        *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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Azure Authorization Header Extractor Azure Authorization Header Extractor
ID ifmjcgakbgnpnppgijcikhpolljgdmlc
URL Chính Thức https://chromewebstore.google.com/detail/azure-authorization-heade/ifmjcgakbgnpnppgijcikhpolljgdmlc
Mô tả Extracts Azure authorization header from requests
Kích Thước Tệp 6.01 KB
Số Lần Cài Đặt 733
Phiên Bản Hiện Tại 1.6
Cập Nhật Lần Cuối 2022-07-14
Ngày Phát Hành 2018-12-12
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Elad Perets
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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
}