My Azure Portal Extention
Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
What is My Azure Portal Extention?
My Azure Portal Extention is a Chrome extension developed by Daichi Isami, and its main feature is "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".
Extension Screenshots
Download My Azure Portal Extention Extension CRX File
Download My Azure Portal Extention extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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 **
Extension Basic Information
Name | My Azure Portal Extention |
ID | jdaghfledaciocaiddjgcaamlcdhijjh |
Official URL | https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh |
Description | Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name |
File Size | 64.89 KB |
Installation Count | 536 |
Current Version | 0.3.2 |
Last Updated | 2023-08-10 |
Publish Date | 2020-05-08 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Daichi Isami |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/normalian/My-Azure-Portal-ChromeExtension |
Help Page URL | https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues |
Supported Languages | 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" } } |