DMOJ Rating Predictor

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

Wat is DMOJ Rating Predictor?

DMOJ Rating Predictor is een Chrome-extensie ontwikkeld door https://evanzhang.ca, en de belangrijkste functie is "An extension which shows rating changes next to DMOJ contest rankings.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie DMOJ Rating Predictor

Download DMOJ Rating Predictor-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam DMOJ Rating Predictor DMOJ Rating Predictor
ID nkhbchlmfhjpjgocbaakkmgejjhnnkoa
Officiële URL https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa
Beschrijving An extension which shows rating changes next to DMOJ contest rankings.
Bestandsgrootte 79.12 KB
Aantal Installaties 202
Huidige Versie 1.0.5
Laatst Bijgewerkt 2023-02-07
Publicatiedatum 2022-02-16
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://evanzhang.ca
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}