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 là gì?

My Azure Portal Extention là một tiện ích mở rộng Chrome được phát triển bởi Daichi Isami, và tính năng chính của nó là "Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng My Azure Portal Extention

Tải xuống các tệp mở rộng My Azure Portal Extention dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên My Azure Portal Extention My Azure Portal Extention
ID jdaghfledaciocaiddjgcaamlcdhijjh
URL Chính Thức https://chromewebstore.google.com/detail/my-azure-portal-extention/jdaghfledaciocaiddjgcaamlcdhijjh
Mô tả Configure background image on Azure Portal, highlight empty resource groups, and mask your username and Entra ID tenant name
Kích Thước Tệp 64.89 KB
Số Lần Cài Đặt 536
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2023-08-10
Ngày Phát Hành 2020-05-08
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Daichi Isami
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/normalian/My-Azure-Portal-ChromeExtension
URL Trang Trợ Giúp https://github.com/normalian/My-Azure-Portal-ChromeExtension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}