My Azure Portal Extention

Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name

Was ist My Azure Portal Extention?

My Azure Portal Extention ist eine Chrome-Erweiterung, die von Daichi Isami entwickelt wurde, und ihr Hauptmerkmal ist "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

My Azure Portal Extention-Erweiterungs-CRX-Datei herunterladen

Laden Sie My Azure Portal Extention-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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 **                    

Grundlegende Informationen zur Erweiterung

Name My Azure Portal Extention My Azure Portal Extention
ID jdaghfledaciocaiddjgcaamlcdhijjh
Offizielle URL https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh
Beschreibung Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
Dateigröße 64.89 KB
Installationsanzahl 536
Aktuelle Version 0.3.2
Letztes Update 2023-08-10
Veröffentlichungsdatum 2020-05-08
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Daichi Isami
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/normalian/My-Azure-Portal-ChromeExtension
Hilfeseite URL https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues
Unterstützte Sprachen 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"
    }
}