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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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 } |