Easy Theme for Azure Portal

Easy on eyes theme for Azure Portal.

Easy Theme for Azure Portal là gì?

Easy Theme for Azure Portal là một tiện ích mở rộng Chrome được phát triển bởi Bohdan Cherchyk, và tính năng chính của nó là "Easy on eyes theme for Azure Portal.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Easy Theme for Azure Portal

Tải xuống các tệp mở rộng Easy Theme for Azure Portal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Easy Theme for Azure Portal Easy Theme for Azure Portal
ID jnfbljnollcdbbfmenlajfbnjgocifgc
URL Chính Thức https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc
Mô tả Easy on eyes theme for Azure Portal.
Kích Thước Tệp 1.42 MB
Số Lần Cài Đặt 26
Phiên Bản Hiện Tại 1.1.3
Cập Nhật Lần Cuối 2020-08-31
Ngày Phát Hành 2020-08-19
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Bohdan Cherchyk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cherchyk/Theme-For-Azure-Portal
URL Trang Trợ Giúp https://github.com/cherchyk/Theme-For-Azure-Portal
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}