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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}