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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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\/*"
    ]
}