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\/*" ] } ] } |