DMOJ Rating Predictor

An extension which shows rating changes next to DMOJ contest rankings.

Qu'est-ce que DMOJ Rating Predictor ?

DMOJ Rating Predictor est une extension Chrome développée par https://evanzhang.ca, et sa fonction principale est "An extension which shows rating changes next to DMOJ contest rankings.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension DMOJ Rating Predictor

Téléchargez les fichiers d'extension DMOJ Rating Predictor 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

                        This is the frontend Chrome extension for predicting rating changes. The extension queries the API at evanzhang.ca. It supports custom contest requests with the use of a request token, so live hidden-scoreboard contests will have rating predictions as well.

Source code available at: https://github.com/Ninjaclasher/dmoj-rating-predictor                    

Informations de Base sur l'Extension

Nom DMOJ Rating Predictor DMOJ Rating Predictor
ID nkhbchlmfhjpjgocbaakkmgejjhnnkoa
URL Officiel https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa
Description An extension which shows rating changes next to DMOJ contest rankings.
Taille du Fichier 79.12 KB
Nombre d'Installations 202
Version Actuelle 1.0.5
Dernière Mise à Jour 2023-02-07
Date de Publication 2022-02-16
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://evanzhang.ca
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DMOJ Rating Predictor",
    "version": "1.0.5",
    "manifest_version": 3,
    "description": "An extension which shows rating changes next to DMOJ contest rankings.",
    "homepage_url": "https:\/\/dmoj.ca",
    "icons": {
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/evanzhang.ca\/"
    ],
    "incognito": "split",
    "options_page": "src\/main.html",
    "action": {
        "default_title": "DMOJ Rating Predictor",
        "default_popup": "src\/main.html"
    },
    "background": {
        "service_worker": "src\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/dmoj.ca\/contest\/*\/ranking\/",
                "https:\/\/dmoj.ca\/users\/"
            ],
            "css": [
                "src\/css\/predictor.css"
            ],
            "js": [
                "src\/vendor\/jquery-3.4.1.min.js",
                "src\/js\/common.js",
                "src\/js\/predictor.js"
            ]
        }
    ]
}