LC Predictor

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

Vad är LC Predictor?

LC Predictor är en Chrome-tillägg utvecklad av https://lcpredictor.onrender.com, och dess huvudfunktion är "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner LC Predictor-förlängningens CRX-fil

Ladda ner LC Predictor-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn LC Predictor LC Predictor
ID jfhgaegpgiepniiebglgjhhfnjcibphh
Officiell webbadress https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh
Beskrivning Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Filstorlek 172 KB
Antal Installationer 4,687
Aktuell Version 1.0.2
Senast Uppdaterad 2022-12-19
Publiceringsdatum 2021-08-10
Betyg 3.73/5 Totalt 15 Betyg
Utvecklare https://lcpredictor.onrender.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://lcpredictor.onrender.com/
Hjälpsida URL https://github.com/SysSn13/leetcode-rating-predictor/issues
Stödda Språk 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\/*"
    ]
}