Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
Wat is Graph X-Ray?
Graph X-Ray is een Chrome-extensie ontwikkeld door merill, en de belangrijkste functie is "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Graph X-Ray
Download Graph X-Ray-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Graph X-Ray |
ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
Officiële URL | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
Beschrijving | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
Bestandsgrootte | 5.94 MB |
Aantal Installaties | 3,439 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2023-12-25 |
Publicatiedatum | 2022-05-12 |
Beoordeling | 5.00/5 Totaal 5 Beoordelingen |
Ontwikkelaar | merill |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://merill.net |
Ondersteunde Talen | 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" } } |