DMOJ Rating Predictor

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

Cos'è DMOJ Rating Predictor?

DMOJ Rating Predictor è un'estensione di Chrome sviluppata da https://evanzhang.ca, e la sua funzione principale è "An extension which shows rating changes next to DMOJ contest rankings.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DMOJ Rating Predictor

Scarica i file di estensione DMOJ Rating Predictor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome DMOJ Rating Predictor DMOJ Rating Predictor
ID nkhbchlmfhjpjgocbaakkmgejjhnnkoa
URL Ufficiale https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa
Descrizione An extension which shows rating changes next to DMOJ contest rankings.
Dimensione del File 79.12 KB
Conteggio Installazioni 202
Versione Corrente 1.0.5
Ultimo Aggiornamento 2023-02-07
Data di Pubblicazione 2022-02-16
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://evanzhang.ca
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}