Carrot

Rating predictor for Codeforces

Carrotคืออะไร?

Carrot เป็นส่วนขยายของ Chrome ที่พัฒนาโดย meooow และคุณลักษณะหลักของมันคือ "Rating predictor for Codeforces"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Carrot

ดาวน์โหลดไฟล์ส่วนขยาย Carrot ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Carrot enhances Codeforces ranklists.

For an active contest:
Carrot calculates rating changes according the current standings when you open the ranklist, and displays them in a new column. Carrot also adds a column showing the delta required to rank up. The delta calculation is done in real time a̶n̶d̶ ̶i̶s̶ ̶1̶0̶0̶%̶ ̶a̶c̶c̶u̶r̶a̶t̶e̶ (see note below).

For a finished contest:
Carrot displays the final deltas of each contestant in a new column and shows their rank change, if any, in an adjacent column.

For both active and finished contests, Carrot displays a column for performance, the rating at which the delta would be zero.

Each of Carrot's columns can be toggled according to your preference, so as to not clutter the ranklist more than you would like.

Carrot communicates only with the Codeforces API and runs entirely in the browser.

Note: Since all required data is fetched and processed in the browser, Carrot is not ideal if you have a low data cap on your network. If so I recommend using CF-Predictor instead: https://codeforces.com/blog/entry/50411
Note: The rating calculation is no longer 100% accurate since the new rating system was introduced. See https://github.com/meooow25/carrot/pull/18 for details.

Bug reports/suggestions? Feel free to open an issue at https://github.com/meooow25/carrot/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Carrot Carrot
ID gakohpplicjdhhfllilcjpfildodfnnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/carrot/gakohpplicjdhhfllilcjpfildodfnnn
คำอธิบาย Rating predictor for Codeforces
ขนาดไฟล์ 40.33 KB
จำนวนการติดตั้ง 32,302
เวอร์ชันปัจจุบัน 0.6.5
อัปเดตครั้งล่าสุด 2023-01-01
วันที่เผยแพร่ 2020-06-07
คะแนน 4.46/5 รวมทั้งหมด 37 คะแนน
ผู้พัฒนา meooow
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/meooow25/carrot
URL หน้าช่วยเหลือ https://github.com/meooow25/carrot/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Carrot",
    "version": "0.6.5",
    "description": "Rating predictor for Codeforces",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "background": {
        "page": "src\/background\/background.html",
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.codeforces.com\/*"
            ],
            "js": [
                "polyfill\/browser-polyfill.min.js",
                "src\/content\/content.js"
            ],
            "css": [
                "src\/content\/content.css"
            ]
        }
    ],
    "options_ui": {
        "page": "src\/options\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_title": "Carrot",
        "default_popup": "src\/popup\/popup.html"
    }
}