CF-Daily
Codeforces extension to display a daily question for each user in each rating group
O que é CF-Daily?
CF-Daily é uma extensão do Chrome desenvolvida por Vansh Sukhija, e sua principal característica é "Codeforces extension to display a daily question for each user in each rating group".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão CF-Daily
Baixe arquivos de extensão CF-Daily 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
Introducing "CF-Daily", an extension for daily coding challenges on Codeforces! Keeping the beginners in mind and after some advice from the masters, we have selected many problems to give as a daily challenge both globally and rating-wise to keep the productivity high. Clicking the icon of the extension has the whole history of the problems of the day on a particular day to easily navigate and re-attempt them. Download CF-Daily today and move ahead with your daily coding journey on Codeforces!
Informações Básicas da Extensão
Nome | CF-Daily |
ID | nfkiibjkhejloohngppadofkbjfindia |
URL Oficial | https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia |
Descrição | Codeforces extension to display a daily question for each user in each rating group |
Tamanho do Arquivo | 24.21 KB |
Contagem de Instalações | 377 |
Versão Atual | 1.1.1 |
Última Atualização | 2023-06-04 |
Data de Publicação | 2023-03-07 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | Vansh Sukhija |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "CF-Daily", "version": "1.1.1", "description": "Codeforces extension to display a daily question for each user in each rating group", "content_scripts": [ { "css": [ "src\/styles.css" ], "js": [ "src\/script.js" ], "matches": [ "https:\/\/codeforces.com\/problemset*" ] } ], "action": { "default_icon": "icons\/icon16.png", "default_popup": "src\/popup.html", "default_title": "CF-Daily" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "permissions": [ "storage" ] } |