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
电子邮箱 [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"
    }
}