Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
¿Qué es Graph X-Ray?
Graph X-Ray es una extensión de Chrome desarrollada por merill, y su función principal es "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Graph X-Ray
Descarga archivos de extensión Graph X-Ray en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Graph X-Ray |
ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
URL Oficial | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
Descripción | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
Tamaño del Archivo | 5.94 MB |
Cantidad de Instalaciones | 3,439 |
Versión Actual | 0.0.3 |
Última Actualización | 2023-12-25 |
Fecha de Publicación | 2022-05-12 |
Calificación | 5.00/5 Total de 5 Calificaciones |
Desarrollador | merill |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://merill.net |
Idiomas Soportados | 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" } } |