Leetcode Custom Themes
Allows you to change Leetcode Code Editor Themes
¿Qué es Leetcode Custom Themes?
Leetcode Custom Themes es una extensión de Chrome desarrollada por Vishnuvardhan S, y su función principal es "Allows you to change Leetcode Code Editor Themes".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Leetcode Custom Themes
Descarga archivos de extensión Leetcode Custom Themes en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Leetcode Custom Themes |
ID | nkbhfhhjppjiflcboogbiahjlknaehhl |
URL Oficial | https://chromewebstore.google.com/detail/leetcode-custom-themes/nkbhfhhjppjiflcboogbiahjlknaehhl |
Descripción | Allows you to change Leetcode Code Editor Themes |
Tamaño del Archivo | 131 KB |
Cantidad de Instalaciones | 473 |
Versión Actual | 2.0.0 |
Última Actualización | 2022-12-24 |
Fecha de Publicación | 2021-12-08 |
Calificación | 5.00/5 Total de 7 Calificaciones |
Desarrollador | Vishnuvardhan S |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/vishnuvardhan-s/leetcode-custom-themes |
URL de la Página de Ayuda | https://github.com/vishnuvardhan-s/leetcode-custom-themes/issues |
Idiomas Soportados | 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\/*" ] } ] } |