My Azure Portal Extention

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

Qu'est-ce que My Azure Portal Extention ?

My Azure Portal Extention est une extension Chrome développée par Daichi Isami, et sa fonction principale est "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension My Azure Portal Extention

Téléchargez les fichiers d'extension My Azure Portal Extention au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom My Azure Portal Extention My Azure Portal Extention
ID jdaghfledaciocaiddjgcaamlcdhijjh
URL Officiel https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh
Description Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
Taille du Fichier 64.89 KB
Nombre d'Installations 536
Version Actuelle 0.3.2
Dernière Mise à Jour 2023-08-10
Date de Publication 2020-05-08
Évaluation 5.00/5 Total 2 Évaluations
Développeur Daichi Isami
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/normalian/My-Azure-Portal-ChromeExtension
URL de la Page d'Aide https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues
Langues Prises en Charge 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"
    }
}