Codeforces++
Codeforces extension pack
Codeforces++คืออะไร?
Codeforces++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Leonardo Riether และคุณลักษณะหลักของมันคือ "Codeforces extension pack"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces++
ดาวน์โหลดไฟล์ส่วนขยาย Codeforces++ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Codeforces++ |
ID | ehbcfilpfnlahficlpimomapmbccieoi |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi |
คำอธิบาย | Codeforces extension pack |
ขนาดไฟล์ | 28.61 KB |
จำนวนการติดตั้ง | 3,692 |
เวอร์ชันปัจจุบัน | 2.4.0 |
อัปเดตครั้งล่าสุด | 2023-02-22 |
วันที่เผยแพร่ | 2020-05-20 |
คะแนน | 4.82/5 รวมทั้งหมด 17 คะแนน |
ผู้พัฒนา | Leonardo Riether |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/LeoRiether/CodeforcesPP |
URL หน้าช่วยเหลือ | https://github.com/LeoRiether/CodeforcesPP/issues/ |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Codeforces++", "description": "Codeforces extension pack", "version": "2.4.0", "manifest_version": 2, "permissions": [ "storage", "*:\/\/codeforces.com\/*", "http:\/\/fonts.googleapis.com\/*", "https:\/\/fonts.googleapis.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/codeforces.com\/*" ], "js": [ "browser-polyfill.min.js", "contentScript.js" ], "css": [ "common.css" ], "run_at": "document_start" } ], "web_accessible_resources": [ "*.js" ], "background": { "persistent": false, "scripts": [ "browser-polyfill.min.js", "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "Codeforces++" }, "icons": { "16": "icons\/16x16.png", "32": "icons\/32x32.png", "48": "icons\/48x48.png", "128": "icons\/128x128.png" } } |