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によって開発されたChromeの拡張機能で、その主な機能は「Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

My Azure Portal Extention拡張機能のCRXファイルをダウンロード

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 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
Eメール [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"
    }
}