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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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/ |
عنوان صفحة المساعدة | 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\/*" ] } |