CF-Daily
Codeforces extension to display a daily question for each user in each rating group
Cos'è CF-Daily?
CF-Daily è un'estensione di Chrome sviluppata da Vansh Sukhija, e la sua funzione principale è "Codeforces extension to display a daily question for each user in each rating group".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione CF-Daily
Scarica i file di estensione CF-Daily 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
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! Informazioni di Base sull'Estensione
| Nome | |
| ID | nfkiibjkhejloohngppadofkbjfindia |
| URL Ufficiale | https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia |
| Descrizione | Codeforces extension to display a daily question for each user in each rating group |
| Dimensione del File | 24.21 KB |
| Conteggio Installazioni | 377 |
| Versione Corrente | 1.1.1 |
| Ultimo Aggiornamento | 2023-06-04 |
| Data di Pubblicazione | 2023-03-07 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | Vansh Sukhija |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |