My Azure Portal Extention
Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
O que é My Azure Portal Extention?
My Azure Portal Extention é uma extensão do Chrome desenvolvida por Daichi Isami, e sua principal característica é "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão My Azure Portal Extention
Baixe arquivos de extensão My Azure Portal Extention no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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 **
Informações Básicas da Extensão
Nome | My Azure Portal Extention |
ID | jdaghfledaciocaiddjgcaamlcdhijjh |
URL Oficial | https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh |
Descrição | Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name |
Tamanho do Arquivo | 64.89 KB |
Contagem de Instalações | 536 |
Versão Atual | 0.3.2 |
Última Atualização | 2023-08-10 |
Data de Publicação | 2020-05-08 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Daichi Isami |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/normalian/My-Azure-Portal-ChromeExtension |
URL da Página de Ajuda | https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues |
Idiomas Suportados | 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" } } |