Contest Standings

Shows standings with updated names from codeforces

Qu'est-ce que Contest Standings ?

Contest Standings est une extension Chrome développée par BigBag, et sa fonction principale est "Shows standings with updated names from codeforces".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Contest Standings

Téléchargez les fichiers d'extension Contest Standings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Contest Standings Contest Standings
ID jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
URL Officiel https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii
Description Shows standings with updated names from codeforces
Taille du Fichier 105 KB
Nombre d'Installations 66
Version Actuelle 3.3.5
Dernière Mise à Jour 2021-11-09
Date de Publication 2020-04-18
Évaluation 5.00/5 Total 2 Évaluations
Développeur BigBag
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}