DMOJ Rating Predictor

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

DMOJ Rating Predictor là gì?

DMOJ Rating Predictor là một tiện ích mở rộng Chrome được phát triển bởi https://evanzhang.ca, và tính năng chính của nó là "An extension which shows rating changes next to DMOJ contest rankings.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng DMOJ Rating Predictor

Tải xuống các tệp mở rộng DMOJ Rating Predictor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên DMOJ Rating Predictor DMOJ Rating Predictor
ID nkhbchlmfhjpjgocbaakkmgejjhnnkoa
URL Chính Thức https://chromewebstore.google.com/detail/dmoj-rating-predictor/nkhbchlmfhjpjgocbaakkmgejjhnnkoa
Mô tả An extension which shows rating changes next to DMOJ contest rankings.
Kích Thước Tệp 79.12 KB
Số Lần Cài Đặt 202
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-02-07
Ngày Phát Hành 2022-02-16
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://evanzhang.ca
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}