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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" } } |