Easy Theme for Azure Portal
Easy on eyes theme for Azure Portal.
Что такое Easy Theme for Azure Portal?
Easy Theme for Azure Portal - это расширение Chrome, разработанное Bohdan Cherchyk, и его основная функция - "Easy on eyes theme for Azure Portal.".
Снимки экрана расширения
Скачать файл CRX расширения Easy Theme for Azure Portal
Скачайте файлы расширений Easy Theme for Azure Portal в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" ] } |