Codeforces POTD
This Extension Gives you a New CF problem to solve each day according to your rating and challenges you. Got what it takes?
Codeforces POTDคืออะไร?
Codeforces POTD เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Anant Kumar และคุณลักษณะหลักของมันคือ "This Extension Gives you a New CF problem to solve each day according to your rating and challenges you. Got what it takes?"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces POTD
ดาวน์โหลดไฟล์ส่วนขยาย Codeforces POTD ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Elevate your coding journey with Codeforces POTD a tailor-made Chrome extension designed to empower your daily programming practice on Codeforces. Do you often find yourself struggling to select the right problem on Codeforces? Do you feel like you've hit a plateau? Are you preparing for an upcoming internship or placement and need structured practice? Enter Codeforces POTD. This innovative tool uses your Codeforces username and leverages the Codeforces API to deliver a unique problem every day, curated specifically to align with your rating. Update v1.3: -Removed the double reload. -Wait for an instant for the calender to update when another user is provided. Update v1.3.1: -Made the UI a little better. -Added Active user to see which user's calender is functional Features: 1. Personalized Daily Problem: By correlating with your rating, Codeforces POTD ensures you face a new, appropriately challenging problem every day. 2. Easy to Use: Simply enter your Codeforces username in the extension's text field, and you're all set! 3. Integrated Calendar: The extension injects a calendar directly into the DOM of Codeforces.com, providing you with a seamless user experience. Codeforces Calender is your companion in overcoming coding roadblocks and advancing in your coding journey. Whether you're a new coder or someone preparing for an exciting professional leap, this extension will help you grow consistently and confidently. Let the daily problem-solving begin. Happy coding!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Codeforces POTD |
ID | kdpcekneldcnkajbmabmfgdpcdjdmcfd |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/codeforces-potd/kdpcekneldcnkajbmabmfgdpcdjdmcfd |
คำอธิบาย | This Extension Gives you a New CF problem to solve each day according to your rating and challenges you. Got what it takes? |
ขนาดไฟล์ | 27.72 KB |
จำนวนการติดตั้ง | 882 |
เวอร์ชันปัจจุบัน | 1.3.1 |
อัปเดตครั้งล่าสุด | 2023-06-22 |
วันที่เผยแพร่ | 2023-06-08 |
คะแนน | 5.00/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Anant Kumar |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeforces POTD", "description": "This Extension Gives you a New CF problem to solve each day according to your rating and challenges you. Got what it takes?", "version": "1.3.1", "permissions": [ "storage", "scripting" ], "host_permissions": [ "https:\/\/codeforces.com\/*" ], "action": { "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ] } |