Graph X-Ray
View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.
什么是Graph X-Ray?
Graph X-Ray是由merill开发的Chrome扩展程序,该扩展的主要功能是“View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page.”。
扩展截图
下载Graph X-Ray扩展crx文件
下载Graph X-Ray扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | gdhbldfajbedclijgcmmmobdbnjhnpdh |
| 官方URL | https://chromewebstore.google.com/detail/graph-x-ray/gdhbldfajbedclijgcmmmobdbnjhnpdh |
| 简介 | View Microsoft Graph API and Graph PowerShell information on the active Azure Portal page. |
| 文件大小 | 5.94 MB |
| 安装次数 | 3,439 |
| 当前版本 | 0.0.3 |
| 更新时间 | 2023-12-25 |
| 上架时间 | 2022-05-12 |
| 评分 | 5.00/5 共5次评分 |
| 开发者 | merill |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://merill.net |
| 支持的语言 | 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"
}
} | |