My Azure Portal Extention
Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
Vad är My Azure Portal Extention?
My Azure Portal Extention är en Chrome-tillägg utvecklad av Daichi Isami, och dess huvudfunktion är "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".
Tilläggsskärmbilder
Ladda ner My Azure Portal Extention-förlängningens CRX-fil
Ladda ner My Azure Portal Extention-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 **
Grundläggande Information om Tillägg
Namn | My Azure Portal Extention |
ID | jdaghfledaciocaiddjgcaamlcdhijjh |
Officiell webbadress | https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh |
Beskrivning | Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name |
Filstorlek | 64.89 KB |
Antal Installationer | 536 |
Aktuell Version | 0.3.2 |
Senast Uppdaterad | 2023-08-10 |
Publiceringsdatum | 2020-05-08 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Daichi Isami |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/normalian/My-Azure-Portal-ChromeExtension |
Hjälpsida URL | https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues |
Stödda Språk | 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" } } |