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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
*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 } |