LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Qu'est-ce que LC Predictor ?
LC Predictor est une extension Chrome développée par https://lcpredictor.onrender.com, et sa fonction principale est "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension LC Predictor
Téléchargez les fichiers d'extension LC Predictor au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | LC Predictor |
ID | jfhgaegpgiepniiebglgjhhfnjcibphh |
URL Officiel | https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh |
Description | Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself. |
Taille du Fichier | 172 KB |
Nombre d'Installations | 4,687 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2022-12-19 |
Date de Publication | 2021-08-10 |
Évaluation | 3.73/5 Total 15 Évaluations |
Développeur | https://lcpredictor.onrender.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://lcpredictor.onrender.com/ |
URL de la Page d'Aide | https://github.com/SysSn13/leetcode-rating-predictor/issues |
Langues Prises en Charge | 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\/*" ] } |