Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Codeforces Solutionsคืออะไร?
Codeforces Solutions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Navpreet Singh และคุณลักษณะหลักของมันคือ "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces Solutions
ดาวน์โหลดไฟล์ส่วนขยาย Codeforces Solutions ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any codeforces problem and click on the extension. You get all submitted solutions!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
คำอธิบาย | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
ขนาดไฟล์ | 35.71 KB |
จำนวนการติดตั้ง | 443 |
เวอร์ชันปัจจุบัน | 0.3 |
อัปเดตครั้งล่าสุด | 2023-06-22 |
วันที่เผยแพร่ | 2023-06-20 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Navpreet Singh |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Codeforces Solutions", "version": "0.3", "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/*", "http:\/\/codeforces.com\/*" ], "js": [ "jquery-3.5.0.min.js", "content.js" ] } ], "action": { "default_icon": "icon.png" }, "background": { "service_worker": "background.js" } } |