Codeforces Solutions

A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…

O que é Codeforces Solutions?

Codeforces Solutions é uma extensão do Chrome desenvolvida por Navpreet Singh, e sua principal característica é "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Codeforces Solutions

Baixe arquivos de extensão Codeforces Solutions 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

                        A chrome extension to get all submitted solutions of a particular problem.

How it works?

Download this extension.
Then browse any codeforces problem and click on the extension.
You get all submitted solutions!                    

Informações Básicas da Extensão

Nome Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
URL Oficial https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
Descrição A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Tamanho do Arquivo 35.71 KB
Contagem de Instalações 443
Versão Atual 0.3
Última Atualização 2023-06-22
Data de Publicação 2023-06-20
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Navpreet Singh
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeforces Solutions",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*",
                "http:\/\/codeforces.com\/*"
            ],
            "js": [
                "jquery-3.5.0.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}