CF-Predictor

This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.

CF-Predictorคืออะไร?

CF-Predictor เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Wsl_F และคุณลักษณะหลักของมันคือ "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest."

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

screenshot

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

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

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

                        A huge number of your nerve cells die every time when you wait for a rating update on Codeforces. Stop this! From now you could use this extension, it partly modifies the contest standings page and shows approximate rating changes for every contestant.                    

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

ชื่อ CF-Predictor CF-Predictor
ID ocfloejijfhhkkdmheodbaanephbnfhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/cf-predictor/ocfloejijfhhkkdmheodbaanephbnfhn
คำอธิบาย This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.
ขนาดไฟล์ 84.96 KB
จำนวนการติดตั้ง 51,012
เวอร์ชันปัจจุบัน 1.3.2
อัปเดตครั้งล่าสุด 2022-11-28
วันที่เผยแพร่ 2020-06-16
คะแนน 4.53/5 รวมทั้งหมด 146 คะแนน
ผู้พัฒนา Wsl_F
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://cf-predictor.wasylf.xyz/
URL หน้าช่วยเหลือ https://codeforces.com/blog/entry/50411?locale=en
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CF-Predictor",
    "short_name": "CF-Predictor",
    "version": "1.3.2",
    "description": "This extension predicts rating changes for Codeforces. It shows approximate deltas during and after the contest.",
    "manifest_version": 3,
    "icons": {
        "48": "static\/icon48.png",
        "64": "static\/icon64.png",
        "128": "static\/icon128.png"
    },
    "action": {
        "default_icon": {
            "48": "static\/icon48.png",
            "64": "static\/icon64.png",
            "128": "static\/icon128.png"
        },
        "default_title": "CF-Predictor",
        "default_popup": "popup.html"
    },
    "host_permissions": [
        "https:\/\/cf-predictor.wasylf.xyz\/"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "js": [
                "third_party\/jquery.js",
                "showDeltas.js"
            ],
            "matches": [
                "http:\/\/codeforces.com\/contest\/*\/standings*",
                "https:\/\/codeforces.com\/contest\/*\/standings*"
            ]
        }
    ]
}