DMOJ Rating Predictor
An extension which shows rating changes next to DMOJ contest rankings.
Was ist DMOJ Rating Predictor?
DMOJ Rating Predictor ist eine Chrome-Erweiterung, die von https://evanzhang.ca entwickelt wurde, und ihr Hauptmerkmal ist "An extension which shows rating changes next to DMOJ contest rankings.".
Erweiterungsscreenshots
DMOJ Rating Predictor-Erweiterungs-CRX-Datei herunterladen
Laden Sie DMOJ Rating Predictor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | DMOJ Rating Predictor |
ID | nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
Offizielle URL | https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
Beschreibung | An extension which shows rating changes next to DMOJ contest rankings. |
Dateigröße | 79.12 KB |
Installationsanzahl | 202 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2023-02-07 |
Veröffentlichungsdatum | 2022-02-16 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://evanzhang.ca |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |