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" ] } |