LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Что такое LC Predictor?
LC Predictor - это расширение Chrome, разработанное https://lcpredictor.onrender.com, и его основная функция - "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".
Снимки экрана расширения
Скачать файл CRX расширения LC Predictor
Скачайте файлы расширений LC Predictor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
After participating in Leetcode contests, you wait too long for seeing your new rating. By using this extension you can get your rating changes right after the completion of contest on Leetcode itself. It adds rating changes on leetcode ranking pages for all the contestants.
Основная информация о расширении
Название | LC Predictor |
ID | jfhgaegpgiepniiebglgjhhfnjcibphh |
Официальный URL | https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh |
Описание | Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself. |
Размер файла | 172 KB |
Количество установок | 4,687 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2022-12-19 |
Дата публикации | 2021-08-10 |
Рейтинг | 3.73/5 Всего 15 оценок |
Разработчик | https://lcpredictor.onrender.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://lcpredictor.onrender.com/ |
URL страницы помощи | https://github.com/SysSn13/leetcode-rating-predictor/issues |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "LC Predictor", "version": "1.0.2", "short_name": "LC Predictor", "background": { "service_worker": "background.js" }, "action": { "default_popup": ".\/popup.html", "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "64": "\/icons\/icon64.png", "128": "\/icons\/icon128.png" } }, "description": "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.", "icons": { "16": "\/icons\/icon16.png", "32": "\/icons\/icon32.png", "48": "\/icons\/icon48.png", "64": "\/icons\/icon64.png", "128": "\/icons\/icon128.png" }, "options_page": ".\/options.html", "permissions": [ "tabs", "storage", "scripting" ], "host_permissions": [ "https:\/\/leetcode.com\/*", "https:\/\/lcpredictor.onrender.com\/*" ] } |