LC Predictor

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

Cos'è LC Predictor?

LC Predictor è un'estensione di Chrome sviluppata da https://lcpredictor.onrender.com, e la sua funzione principale è "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione LC Predictor

Scarica i file di estensione LC Predictor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome LC Predictor LC Predictor
ID jfhgaegpgiepniiebglgjhhfnjcibphh
URL Ufficiale https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh
Descrizione Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Dimensione del File 172 KB
Conteggio Installazioni 4,687
Versione Corrente 1.0.2
Ultimo Aggiornamento 2022-12-19
Data di Pubblicazione 2021-08-10
Valutazione 3.73/5 Totale 15 Valutazioni
Sviluppatore https://lcpredictor.onrender.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://lcpredictor.onrender.com/
URL della Pagina di Aiuto https://github.com/SysSn13/leetcode-rating-predictor/issues
Lingue Supportate 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\/*"
    ]
}