LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Co to jest LC Predictor?
LC Predictor to rozszerzenie Chrome opracowane przez https://lcpredictor.onrender.com, a jego główną funkcją jest „Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia LC Predictor
Pobierz pliki rozszerzeń LC Predictor w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | LC Predictor |
ID | jfhgaegpgiepniiebglgjhhfnjcibphh |
Oficjalny URL | https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh |
Opis | Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself. |
Rozmiar pliku | 172 KB |
Liczba instalacji | 4,687 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2022-12-19 |
Data Publikacji | 2021-08-10 |
Ocena | 3.73/5 Łącznie 15 Oceny |
Deweloper | https://lcpredictor.onrender.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://lcpredictor.onrender.com/ |
Adres URL Strony Pomocy | https://github.com/SysSn13/leetcode-rating-predictor/issues |
Obsługiwane Języki | 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\/*" ] } |