DMOJ Rating Predictor
An extension which shows rating changes next to DMOJ contest rankings.
DMOJ Rating Predictorคืออะไร?
DMOJ Rating Predictor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://evanzhang.ca และคุณลักษณะหลักของมันคือ "An extension which shows rating changes next to DMOJ contest rankings."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DMOJ Rating Predictor
ดาวน์โหลดไฟล์ส่วนขยาย DMOJ Rating Predictor ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is the frontend Chrome extension for predicting rating changes. The extension queries the API at evanzhang.ca. It supports custom contest requests with the use of a request token, so live hidden-scoreboard contests will have rating predictions as well. Source code available at: https://github.com/Ninjaclasher/dmoj-rating-predictor
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DMOJ Rating Predictor |
ID | nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
คำอธิบาย | An extension which shows rating changes next to DMOJ contest rankings. |
ขนาดไฟล์ | 79.12 KB |
จำนวนการติดตั้ง | 202 |
เวอร์ชันปัจจุบัน | 1.0.5 |
อัปเดตครั้งล่าสุด | 2023-02-07 |
วันที่เผยแพร่ | 2022-02-16 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | https://evanzhang.ca |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DMOJ Rating Predictor", "version": "1.0.5", "manifest_version": 3, "description": "An extension which shows rating changes next to DMOJ contest rankings.", "homepage_url": "https:\/\/dmoj.ca", "icons": { "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/evanzhang.ca\/" ], "incognito": "split", "options_page": "src\/main.html", "action": { "default_title": "DMOJ Rating Predictor", "default_popup": "src\/main.html" }, "background": { "service_worker": "src\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/dmoj.ca\/contest\/*\/ranking\/", "https:\/\/dmoj.ca\/users\/" ], "css": [ "src\/css\/predictor.css" ], "js": [ "src\/vendor\/jquery-3.4.1.min.js", "src\/js\/common.js", "src\/js\/predictor.js" ] } ] } |