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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
이메일 | [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" ] } ] } |