Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
Vad är Graph X-Ray?
Graph X-Ray är en Chrome-tillägg utvecklad av merill, och dess huvudfunktion är "View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.".
Tilläggsskärmbilder
Ladda ner Graph X-Ray-förlängningens CRX-fil
Ladda ner Graph X-Ray-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
| Officiell webbadress | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
| Beskrivning | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
| Filstorlek | 5.94 MB |
| Antal Installationer | 3,439 |
| Aktuell Version | 0.0.3 |
| Senast Uppdaterad | 2023-12-25 |
| Publiceringsdatum | 2022-05-12 |
| Betyg | 5.00/5 Totalt 5 Betyg |
| Utvecklare | merill |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://merill.net |
| Stödda Språk | 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"
}
} | |