Easy Theme for Azure Portal
Easy on eyes theme for Azure Portal.
Co je Easy Theme for Azure Portal?
Easy Theme for Azure Portal je rozšíření Chrome vyvinuté Bohdan Cherchyk, a jeho hlavní funkcí je „Easy on eyes theme for Azure Portal.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Easy Theme for Azure Portal
Stáhněte si soubory rozšíření Easy Theme for Azure Portal ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Easy Theme for Azure Portal |
ID | jnfbljnollcdbbfmenlajfbnjgocifgc |
Oficiální URL | https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc |
Popis | Easy on eyes theme for Azure Portal. |
Velikost souboru | 1.42 MB |
Počet instalací | 26 |
Aktuální Verze | 1.1.3 |
Poslední Aktualizace | 2020-08-31 |
Datum Vydání | 2020-08-19 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Bohdan Cherchyk |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/cherchyk/Theme-For-Azure-Portal |
URL Stránky Nápovědy | https://github.com/cherchyk/Theme-For-Azure-Portal |
Podporované Jazyky | 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" ] } |