LC Predictor
Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
什麼是LC Predictor?
LC Predictor是由https://lcpredictor.onrender.com開發的Chrome擴展程式,該擴展的主要功能是“Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.”。
擴展截圖
下載LC Predictor擴展crx文件
下載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 |
官方網址 | 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\/*" ] } |