LC Predictor

Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.

What is LC Predictor?

LC Predictor is a Chrome extension developed by https://lcpredictor.onrender.com, and its main feature is "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".

Extension Screenshots

screenshot
screenshot

Download LC Predictor Extension CRX File

Download LC Predictor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name LC Predictor LC Predictor
ID jfhgaegpgiepniiebglgjhhfnjcibphh
Official URL 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.
File Size 172 KB
Installation Count 4,687
Current Version 1.0.2
Last Updated 2022-12-19
Publish Date 2021-08-10
Rating 3.73/5 Total 15 Ratings
Developer https://lcpredictor.onrender.com
Email [email protected]
Payment Type free
Extension Website https://lcpredictor.onrender.com/
Help Page URL https://github.com/SysSn13/leetcode-rating-predictor/issues
Supported Languages 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\/*"
    ]
}