LC Predictor

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

LC Predictorคืออะไร?

LC Predictor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://lcpredictor.onrender.com และคุณลักษณะหลักของมันคือ "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย LC Predictor

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}