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 |
| Eメール | [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"
}
} | |