Codeforces Notification
push notification for codeforces
Codeforces Notificationคืออะไร?
Codeforces Notification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ganariya2525 และคุณลักษณะหลักของมันคือ "push notification for codeforces"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Codeforces Notification
ดาวน์โหลดไฟล์ส่วนขยาย Codeforces Notification ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
When you submit your answers on Codeforces, you can get notification which describes whether you have the correct answer or wrong answer, or so. Codeforcesで答えを提出した時、結果のプッシュ通知を受け取ることが出来ます。
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | jglachhdagmpdpplklfanbooafbmkddn |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/codeforces-notification/jglachhdagmpdpplklfanbooafbmkddn |
คำอธิบาย | push notification for codeforces |
ขนาดไฟล์ | 606 KB |
จำนวนการติดตั้ง | 35 |
เวอร์ชันปัจจุบัน | 1.0.0.0 |
อัปเดตครั้งล่าสุด | 2018-12-30 |
วันที่เผยแพร่ | 2018-12-30 |
ผู้พัฒนา | ganariya2525 |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "push notification for codeforces", "version": "1.0.0.0", "name": "Codeforces Notification", "background": { "page": "background.html" }, "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/contest\/*\/my" ], "js": [ "my_submission.bundle.js" ] } ], "icons": { "128": "icon-128.png" }, "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "permissions": [ "alarms", "background", "notifications", "storage" ] } |