Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
Что такое Graph X-Ray?
Graph X-Ray - это расширение Chrome, разработанное merill, и его основная функция - "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".
Снимки экрана расширения
Скачать файл CRX расширения Graph X-Ray
Скачайте файлы расширений Graph X-Ray в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
View context sensitive PowerShell commands in the Microsoft Azure Active Directory Portal and use the Graph X-Ray feature in Developer Tools to view the Graph API commands and corresponding PowerShell commands of actions performed on the portal.
Основная информация о расширении
Название | Graph X-Ray |
ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
Официальный URL | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
Описание | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
Размер файла | 5.94 MB |
Количество установок | 3,439 |
Текущая Версия | 0.0.3 |
Последнее Обновление | 2023-12-25 |
Дата публикации | 2022-05-12 |
Рейтинг | 5.00/5 Всего 5 оценок |
Разработчик | merill |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://merill.net |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "0.0.3", "short_name": "Graph X-Ray", "name": "Graph X-Ray", "description": "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.", "action": { "default_title": "Graph X-Ray", "default_popup": "popup.html" }, "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ] } ], "host_permissions": [ "https:\/\/portal.azure.com\/", "https:\/\/graph.microsoft.com\/" ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "options_page": "options.html", "devtools_page": "dev.html", "permissions": [ "storage" ], "content_security_policy": { "script-src": "self", "object-src": "self" } } |