Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
O que é Graph X-Ray?
Graph X-Ray é uma extensão do Chrome desenvolvida por merill, e sua principal característica é "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Graph X-Ray
Baixe arquivos de extensão Graph X-Ray no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Graph X-Ray |
ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
URL Oficial | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
Descrição | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
Tamanho do Arquivo | 5.94 MB |
Contagem de Instalações | 3,439 |
Versão Atual | 0.0.3 |
Última Atualização | 2023-12-25 |
Data de Publicação | 2022-05-12 |
Classificação | 5.00/5 Total de 5 Avaliações |
Desenvolvedor | merill |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://merill.net |
Idiomas Suportados | 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" } } |