Easy Theme for Azure Portal
Easy on eyes theme for Azure Portal.
Wat is Easy Theme for Azure Portal?
Easy Theme for Azure Portal is een Chrome-extensie ontwikkeld door Bohdan Cherchyk, en de belangrijkste functie is "Easy on eyes theme for Azure Portal.".
Extensie Screenshots
Download het CRX-bestand van de extensie Easy Theme for Azure Portal
Download Easy Theme for Azure Portal-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | Easy Theme for Azure Portal |
ID | jnfbljnollcdbbfmenlajfbnjgocifgc |
Officiële URL | https://chromewebstore.google.com/detail/easy-theme-for-azure-port/jnfbljnollcdbbfmenlajfbnjgocifgc |
Beschrijving | Easy on eyes theme for Azure Portal. |
Bestandsgrootte | 1.42 MB |
Aantal Installaties | 26 |
Huidige Versie | 1.1.3 |
Laatst Bijgewerkt | 2020-08-31 |
Publicatiedatum | 2020-08-19 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Bohdan Cherchyk |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/cherchyk/Theme-For-Azure-Portal |
Help Pagina-URL | https://github.com/cherchyk/Theme-For-Azure-Portal |
Ondersteunde Talen | 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" ] } |