My Azure Portal Extention
Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
什麼是My Azure Portal Extention?
My Azure Portal Extention是由Daichi Isami開發的Chrome擴展程式,該擴展的主要功能是“Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name”。
擴展截圖
下載My Azure Portal Extention擴展crx文件
下載My Azure Portal Extention擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This extension improves user Azure Portal experience. - Configure Azure Portal background image - Mask username and Entra ID tenant name - Highlight empty resource groups ** Note this extension is not Microsoft official **
擴展基本資訊
名稱 | My Azure Portal Extention |
ID | jdaghfledaciocaiddjgcaamlcdhijjh |
官方網址 | https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh |
簡介 | Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name |
檔案大小 | 64.89 KB |
安裝次數 | 536 |
目前版本 | 0.3.2 |
更新時間 | 2023-08-10 |
上架時間 | 2020-05-08 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Daichi Isami |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/normalian/My-Azure-Portal-ChromeExtension |
說明頁面URL | https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "My Azure Portal Extention", "version": "0.3.2", "manifest_version": 3, "description": "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name", "action": { "default_icon": "img\/icon128.png", "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "scripts": [ "jquery-3.5.1.min.js", "popup.js" ], "css": [ "css\/popup.css" ], "default_popup": "popup.html" }, "permissions": [ "storage", "contextMenus" ], "content_scripts": [ { "matches": [ "https:\/\/ms.portal.azure.com\/*", "https:\/\/portal.azure.com\/*" ], "js": [ "jquery-3.5.1.min.js", "script.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js", "type": "module" } } |