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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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/
عنوان صفحة المساعدة 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*"
            ]
        }
    ]
}