LC Predictor

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

Co je LC Predictor?

LC Predictor je rozšíření Chrome vyvinuté https://lcpredictor.onrender.com, a jeho hlavní funkcí je „Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření LC Predictor

Stáhněte si soubory rozšíření LC Predictor ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název LC Predictor LC Predictor
ID jfhgaegpgiepniiebglgjhhfnjcibphh
Oficiální URL https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh
Popis Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Velikost souboru 172 KB
Počet instalací 4,687
Aktuální Verze 1.0.2
Poslední Aktualizace 2022-12-19
Datum Vydání 2021-08-10
Hodnocení 3.73/5 Celkem 15 Hodnocení
Vývojář https://lcpredictor.onrender.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://lcpredictor.onrender.com/
URL Stránky Nápovědy https://github.com/SysSn13/leetcode-rating-predictor/issues
Podporované Jazyky 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\/*"
    ]
}