Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

Co to jest Easy Theme for Azure Portal?

Easy Theme for Azure Portal to rozszerzenie Chrome opracowane przez Bohdan Cherchyk, a jego główną funkcją jest „Easy on eyes theme for Azure Portal.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Easy Theme for Azure Portal

Pobierz pliki rozszerzeń Easy Theme for Azure Portal w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Easy Theme for Azure Portal Easy Theme for Azure Portal
ID jnfbljnollcdbbfmenlajfbnjgocifgc
Oficjalny URL https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc
Opis Easy on eyes theme for Azure Portal.
Rozmiar pliku 1.42 MB
Liczba instalacji 26
Aktualna Wersja 1.1.3
Ostatnia Aktualizacja 2020-08-31
Data Publikacji 2020-08-19
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Bohdan Cherchyk
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/cherchyk/Theme-For-Azure-Portal
Adres URL Strony Pomocy https://github.com/cherchyk/Theme-For-Azure-Portal
Obsługiwane Języki 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"
    ]
}