Leetcode Difficulty Rating
Replace Leetcode problem's difficulty with a more precise contest rating.
Что такое Leetcode Difficulty Rating?
Leetcode Difficulty Rating - это расширение Chrome, разработанное boenshao, и его основная функция - "Replace Leetcode problem's difficulty with a more precise contest rating.".
Снимки экрана расширения
Скачать файл CRX расширения Leetcode Difficulty Rating
Скачайте файлы расширений Leetcode Difficulty Rating в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Support both "leetcode.com" and "leetcode.cn". The green/yellow/red text color is preserved, so you can still tell the official difficulty. Problems in 1st-62nd weekly contests and problems that did not come from contests don’t have rating data and "N/A" is shown by default. You can change the setting in the extension popup. For more details and source code, please visit: - https://github.com/boenshao/leetcode-difficulty-rating-extension
Основная информация о расширении
Название | Leetcode Difficulty Rating |
ID | hedijgjklbddpidomdhhngflipnibhca |
Официальный URL | https://chromewebstore.google.com/detail/leetcode-difficulty-ratin/hedijgjklbddpidomdhhngflipnibhca |
Описание | Replace Leetcode problem's difficulty with a more precise contest rating. |
Размер файла | 12.9 KB |
Количество установок | 1,000 |
Текущая Версия | 1.1.6 |
Последнее Обновление | 2023-09-13 |
Дата публикации | 2023-01-25 |
Рейтинг | 4.11/5 Всего 9 оценок |
Разработчик | boenshao |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/boenshao/leetcode-difficulty-rating-extension |
URL страницы политики конфиденциальности | https://github.com/boenshao/leetcode-difficulty-rating-extension/wiki/Privacy-Policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Leetcode Difficulty Rating", "version": "1.1.6", "description": "Replace Leetcode problem's difficulty with a more precise contest rating.", "permissions": [ "storage" ], "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "js": [ "src\/content.js" ], "matches": [ "*:\/\/leetcode.com\/*", "*:\/\/leetcode.cn\/*" ] } ], "background": { "service_worker": "src\/background.js" }, "action": { "default_popup": "src\/popup.html" } } |