Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

Qu'est-ce que Easy Theme for Azure Portal ?

Easy Theme for Azure Portal est une extension Chrome développée par Bohdan Cherchyk, et sa fonction principale est "Easy on eyes theme for Azure Portal.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Easy Theme for Azure Portal

Téléchargez les fichiers d'extension Easy Theme for Azure Portal au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Easy Theme for Azure Portal Easy Theme for Azure Portal
ID jnfbljnollcdbbfmenlajfbnjgocifgc
URL Officiel https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc
Description Easy on eyes theme for Azure Portal.
Taille du Fichier 1.42 MB
Nombre d'Installations 26
Version Actuelle 1.1.3
Dernière Mise à Jour 2020-08-31
Date de Publication 2020-08-19
Évaluation 5.00/5 Total 1 Évaluations
Développeur Bohdan Cherchyk
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/cherchyk/Theme-For-Azure-Portal
URL de la Page d'Aide https://github.com/cherchyk/Theme-For-Azure-Portal
Langues Prises en Charge 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"
    ]
}