Codeforce submission status link

Add submission status link to the problem page

Codeforce submission status link là gì?

Codeforce submission status link là một tiện ích mở rộng Chrome được phát triển bởi https://fatminmin.com, và tính năng chính của nó là "Add submission status link to the problem page".

Ả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 Codeforce submission status link

Tải xuống các tệp mở rộng Codeforce submission status link 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 extension adds a link to the problem submission page at the end of sidebar for Codeforces.                    

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

Tên Codeforce submission status link Codeforce submission status link
ID pckjjhfnnmonhkfekgnbbdafndfjpjap
URL Chính Thức https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap
Mô tả Add submission status link to the problem page
Kích Thước Tệp 40.68 KB
Số Lần Cài Đặt 637
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2016-08-29
Ngày Phát Hành 2016-08-29
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://fatminmin.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chiehmin/CodeforcesExtension
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Codeforce submission status link",
    "description": "Add submission status link to the problem page",
    "version": "1.0.4",
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.codeforces.com\/problemset\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "problemset.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*.codeforces.com\/group\/*\/contest\/*\/problem\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "group_problem.js"
            ],
            "run_at": "document_idle"
        }
    ]
}