DMOJ Rating Predictor
An extension which shows rating changes next to DMOJ contest rankings.
DMOJ Rating Predictorとは何ですか?
DMOJ Rating Predictorはhttps://evanzhang.caによって開発されたChromeの拡張機能で、その主な機能は「An extension which shows rating changes next to DMOJ contest rankings.」です。
拡張機能のスクリーンショット
DMOJ Rating Predictor拡張機能のCRXファイルをダウンロード
DMOJ Rating Predictor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | DMOJ Rating Predictor |
ID | nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
公式URL | https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa |
説明 | An extension which shows rating changes next to DMOJ contest rankings. |
ファイルサイズ | 79.12 KB |
インストール数 | 202 |
現在のバージョン | 1.0.5 |
最終更新日 | 2023-02-07 |
公開日 | 2022-02-16 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://evanzhang.ca |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" ] } ] } |