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.”。

扩展截图

screenshot
screenshot

下载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 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/
帮助页面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\/*"
    ]
}