CF-Daily
Codeforces extension to display a daily question for each user in each rating group
CF-Dailyคืออะไร?
CF-Daily เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Vansh Sukhija และคุณลักษณะหลักของมันคือ "Codeforces extension to display a daily question for each user in each rating group"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CF-Daily
ดาวน์โหลดไฟล์ส่วนขยาย CF-Daily ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CF-Daily |
ID | nfkiibjkhejloohngppadofkbjfindia |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia |
คำอธิบาย | Codeforces extension to display a daily question for each user in each rating group |
ขนาดไฟล์ | 24.21 KB |
จำนวนการติดตั้ง | 377 |
เวอร์ชันปัจจุบัน | 1.1.1 |
อัปเดตครั้งล่าสุด | 2023-06-04 |
วันที่เผยแพร่ | 2023-03-07 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | Vansh Sukhija |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | 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" ] } |