LC Predictor

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

O que é LC Predictor?

LC Predictor é uma extensão do Chrome desenvolvida por https://lcpredictor.onrender.com, e sua principal característica é "Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão LC Predictor

Baixe arquivos de extensão LC Predictor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome LC Predictor LC Predictor
ID jfhgaegpgiepniiebglgjhhfnjcibphh
URL Oficial https://chromewebstore.google.com/detail/lc-predictor/jfhgaegpgiepniiebglgjhhfnjcibphh
Descrição Browser extension for predicting leetcode contest rating. It shows approximate rating delta after contests on leetcode itself.
Tamanho do Arquivo 172 KB
Contagem de Instalações 4,687
Versão Atual 1.0.2
Última Atualização 2022-12-19
Data de Publicação 2021-08-10
Classificação 3.73/5 Total de 15 Avaliações
Desenvolvedor https://lcpredictor.onrender.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://lcpredictor.onrender.com/
URL da Página de Ajuda https://github.com/SysSn13/leetcode-rating-predictor/issues
Idiomas Suportados 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\/*"
    ]
}