My Azure Portal Extention
Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
Cos'è My Azure Portal Extention?
My Azure Portal Extention è un'estensione di Chrome sviluppata da Daichi Isami, e la sua funzione principale è "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione My Azure Portal Extention
Scarica i file di estensione My Azure Portal Extention in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 **
Informazioni di Base sull'Estensione
Nome | My Azure Portal Extention |
ID | jdaghfledaciocaiddjgcaamlcdhijjh |
URL Ufficiale | https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh |
Descrizione | Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name |
Dimensione del File | 64.89 KB |
Conteggio Installazioni | 536 |
Versione Corrente | 0.3.2 |
Ultimo Aggiornamento | 2023-08-10 |
Data di Pubblicazione | 2020-05-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Daichi Isami |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/normalian/My-Azure-Portal-ChromeExtension |
URL della Pagina di Aiuto | https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues |
Lingue Supportate | 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" } } |