LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Apa itu LC Predictor?
LC Predictor adalah ekstensi Chrome yang dikembangkan oleh https://lcpredictor.onrender.com, dan fitur utamanya adalah "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi LC Predictor
Unduh file ekstensi LC Predictor dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | LC Predictor |
ID | jfhgaegpgiepniiebglgjhhfnjcibphh |
URL Resmi | https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh |
Deskripsi | Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself. |
Ukuran File | 172 KB |
Jumlah Instalasi | 4,687 |
Versi Saat Ini | 1.0.2 |
Terakhir Diperbarui | 2022-12-19 |
Tanggal Publikasi | 2021-08-10 |
Penilaian | 3.73/5 Total 15 Penilaian |
Pengembang | https://lcpredictor.onrender.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://lcpredictor.onrender.com/ |
URL Halaman Bantuan | https://github.com/SysSn13/leetcode-rating-predictor/issues |
Bahasa yang Didukung | 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\/*" ] } |