Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

Easy Theme for Azure Portal란 무엇입니까?

Easy Theme for Azure Portal은(는) Bohdan Cherchyk에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy on eyes theme for Azure Portal."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Easy Theme for Azure Portal 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extremely light Chrome extension modifies colors for the Dark theme used in Azure Portal.

To use it, follow these steps:
1 Install by clicking  "Add to Chrome."
2 In Azure Portal, switch to Dark theme.

This extension modifies styles of the existing Amazon portal Dark theme.

Source code https://github.com/cherchyk/Theme-For-Azure-Portal                    

확장 프로그램 기본 정보

이름 Easy Theme for Azure Portal Easy Theme for Azure Portal
ID jnfbljnollcdbbfmenlajfbnjgocifgc
공식 URL https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc
설명 Easy on eyes theme for Azure Portal.
파일 크기 1.42 MB
설치 횟수 26
현재 버전 1.1.3
최근 업데이트 2020-08-31
출시 날짜 2020-08-19
평점 5.00/5 총 1 개의 평점
개발자 Bohdan Cherchyk
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/cherchyk/Theme-For-Azure-Portal
도움말 페이지 URL https://github.com/cherchyk/Theme-For-Azure-Portal
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Theme for Azure Portal",
    "version": "1.1.3",
    "description": "Easy on eyes theme for Azure Portal.",
    "icons": {
        "16": "images\/logo16.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/logo16.png",
        "default_popup": "popup.html",
        "default_title": "Easy Theme for Azure Portal"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.portal.azure.com\/*"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "content\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.jpg"
    ]
}