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 Daichi Isami द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में My Azure Portal Extention एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" } } |