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
官方網址 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"
    ]
}