Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

Easy Theme for Azure Portal क्या है?

Easy Theme for Azure Portal Bohdan Cherchyk द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easy on eyes theme for Azure Portal."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Easy Theme for Azure Portal एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}