CF-Daily
Codeforces extension to display a daily question for each user in each rating group
Was ist CF-Daily?
CF-Daily ist eine Chrome-Erweiterung, die von Vansh Sukhija entwickelt wurde, und ihr Hauptmerkmal ist "Codeforces extension to display a daily question for each user in each rating group".
Erweiterungsscreenshots
CF-Daily-Erweiterungs-CRX-Datei herunterladen
Laden Sie CF-Daily-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | nfkiibjkhejloohngppadofkbjfindia |
| Offizielle URL | https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia |
| Beschreibung | Codeforces extension to display a daily question for each user in each rating group |
| Dateigröße | 24.21 KB |
| Installationsanzahl | 377 |
| Aktuelle Version | 1.1.1 |
| Letztes Update | 2023-06-04 |
| Veröffentlichungsdatum | 2023-03-07 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | Vansh Sukhija |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
]
} | |