Graph X-Ray

View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.

Cos'è Graph X-Ray?

Graph X-Ray è un'estensione di Chrome sviluppata da merill, e la sua funzione principale è "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Graph X-Ray

Scarica i file di estensione Graph X-Ray in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Graph X-Ray Graph X-Ray
ID gdhbldfajbedclijgcmmmobdbnjhnpdh
URL Ufficiale https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh
Descrizione View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
Dimensione del File 5.94 MB
Conteggio Installazioni 3,439
Versione Corrente 0.0.3
Ultimo Aggiornamento 2023-12-25
Data di Pubblicazione 2022-05-12
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore merill
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://merill.net
Lingue Supportate 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"
    }
}