Easy Theme for Azure Portal
Easy on eyes theme for Azure Portal.
Was ist Easy Theme for Azure Portal?
Easy Theme for Azure Portal ist eine Chrome-Erweiterung, die von Bohdan Cherchyk entwickelt wurde, und ihr Hauptmerkmal ist "Easy on eyes theme for Azure Portal.".
Erweiterungsscreenshots
Easy Theme for Azure Portal-Erweiterungs-CRX-Datei herunterladen
Laden Sie Easy Theme for Azure Portal-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jnfbljnollcdbbfmenlajfbnjgocifgc |
| Offizielle URL | https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc |
| Beschreibung | Easy on eyes theme for Azure Portal. |
| Dateigröße | 1.42 MB |
| Installationsanzahl | 26 |
| Aktuelle Version | 1.1.3 |
| Letztes Update | 2020-08-31 |
| Veröffentlichungsdatum | 2020-08-19 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Bohdan Cherchyk |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/cherchyk/Theme-For-Azure-Portal |
| Hilfeseite URL | https://github.com/cherchyk/Theme-For-Azure-Portal |
| Unterstützte Sprachen | 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"
]
} | |