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 - это расширение Chrome, разработанное Daichi Isami, и его основная функция - "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".
Снимки экрана расширения
Скачать файл CRX расширения My Azure Portal Extention
Скачайте файлы расширений 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 |
Официальный URL | 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" } } |