Leetcode Custom Themes
Allows you to change Leetcode Code Editor Themes
Τι είναι το Leetcode Custom Themes;
Το Leetcode Custom Themes είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Vishnuvardhan S, και η κύρια λειτουργία του είναι "Allows you to change Leetcode Code Editor Themes".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Leetcode Custom Themes
Λήψη αρχείων επέκτασης Leetcode Custom Themes σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With this extension, you may personalize the Leetcode Code Editor with a number of different themes. New features: New Leetcode UI: Added support for new Leetcode UI. Provides a list of monaco based themes. Old Leetcode UI: Added two new themes, "Google Interview - Light and Dark" which simulates Google Doc where you will have no color schemes.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Leetcode Custom Themes |
ID | nkbhfhhjppjiflcboogbiahjlknaehhl |
Επίσημο URL | https://chromewebstore.google.com/detail/leetcode-custom-themes/nkbhfhhjppjiflcboogbiahjlknaehhl |
Περιγραφή | Allows you to change Leetcode Code Editor Themes |
Μέγεθος Αρχείου | 131 KB |
Αριθμός Εγκαταστάσεων | 473 |
Τρέχουσα Έκδοση | 2.0.0 |
Τελευταία Ενημέρωση | 2022-12-24 |
Ημερομηνία Δημοσίευσης | 2021-12-08 |
Αξιολόγηση | 5.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Vishnuvardhan S |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/vishnuvardhan-s/leetcode-custom-themes |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/vishnuvardhan-s/leetcode-custom-themes/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Leetcode Custom Themes", "version": "2.0.0", "manifest_version": 3, "description": "Allows you to change Leetcode Code Editor Themes", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "author": "Vishnuvardhan S", "homepage_url": "https:\/\/github.com\/vishnuvardhan-s\/leetcode-custom-themes", "action": { "default_icon": "icons\/icon32.png", "default_popup": "popup.html", "default_title": "Leetcode Custom Themes" }, "background": { "service_worker": "background.js" }, "permissions": [ "storage", "scripting", "tabs" ], "host_permissions": [ "https:\/\/leetcode.com\/**" ], "content_scripts": [ { "matches": [ "https:\/\/leetcode.com\/*" ], "js": [ "inject.js" ], "all_frames": true } ], "web_accessible_resources": [ { "resources": [ "content.js", "themes\/*.json" ], "matches": [ "https:\/\/leetcode.com\/*" ] } ] } |