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 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
}
]
} | |