Contest Standings

Shows standings with updated names from codeforces

ما هو Contest Standings؟

Contest Standings هو إضافة Chrome تم تطويرها بواسطة BigBag، والميزة الرئيسية لها هي "Shows standings with updated names from codeforces".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Contest Standings

قم بتنزيل ملفات الامتداد Contest Standings بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.                    

معلومات أساسية عن التمديد

الاسم Contest Standings Contest Standings
ID jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
عنوان URL الرسمي https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
الوصف Shows standings with updated names from codeforces
حجم الملف 105 KB
عدد التثبيتات 66
النسخة الحالية 3.3.5
آخر تحديث 2021-11-09
تاريخ النشر 2020-04-18
تقييم 5.00/5 مجموع تقييمات 2
المطور BigBag
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Contest Standings",
    "short_name": "Contest Standings",
    "version": "3.3.5",
    "description": "Shows standings with updated names from codeforces",
    "manifest_version": 2,
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "permissions": [
        "background",
        "http:\/\/codeforces.com\/"
    ],
    "content_scripts": [
        {
            "js": [
                "include.js",
                "third_party\/jquery.js",
                "updateStandings.js"
            ],
            "css": [
                "styles.css"
            ],
            "matches": [
                "http:\/\/*.snarknews.info\/*",
                "http:\/\/opencup.ru\/*",
                "https:\/\/official.contest.yandex.ru\/*",
                "https:\/\/official.contest.yandex.com\/*",
                "https:\/\/contest.yandex.ru\/*",
                "https:\/\/contest.yandex.com\/*",
                "http:\/\/*.mipt.ru\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "include.js",
            "third_party\/jquery.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Contest Standings",
        "default_icon": "static\/icon16.png",
        "default_popup": "popup.html"
    }
}