Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

O que é Easy Theme for Azure Portal?

Easy Theme for Azure Portal é uma extensão do Chrome desenvolvida por Bohdan Cherchyk, e sua principal característica é "Easy on eyes theme for Azure Portal.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Easy Theme for Azure Portal

Baixe arquivos de extensão Easy Theme for Azure Portal no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Easy Theme for Azure Portal Easy Theme for Azure Portal
ID jnfbljnollcdbbfmenlajfbnjgocifgc
URL Oficial https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc
Descrição Easy on eyes theme for Azure Portal.
Tamanho do Arquivo 1.42 MB
Contagem de Instalações 26
Versão Atual 1.1.3
Última Atualização 2020-08-31
Data de Publicação 2020-08-19
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Bohdan Cherchyk
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/cherchyk/Theme-For-Azure-Portal
URL da Página de Ajuda https://github.com/cherchyk/Theme-For-Azure-Portal
Idiomas Suportados 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"
    ]
}