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ファイルをダウンロード

Easy Theme for Azure Portal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

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