Codeforces++

Codeforces extension pack

Codeforces++ là gì?

Codeforces++ là một tiện ích mở rộng Chrome được phát triển bởi Leonardo Riether, và tính năng chính của nó là "Codeforces extension pack".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Codeforces++ 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

                        Ever wanted Codeforces to have handy shortcuts, auto-updating standings, problem tags that you can hide/show on demand, better site navigation, a dark theme, or all of the above? These and many more features are available in Codeforces++! This extension is open-source and hosted at GitHub https://github.com/LeoRiether/CodeforcesPP                    

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

Tên Codeforces++ Codeforces++
ID ehbcfilpfnlahficlpimomapmbccieoi
URL Chính Thức https://chromewebstore.google.com/detail/codeforces++/ehbcfilpfnlahficlpimomapmbccieoi
Mô tả Codeforces extension pack
Kích Thước Tệp 28.61 KB
Số Lần Cài Đặt 3,692
Phiên Bản Hiện Tại 2.4.0
Cập Nhật Lần Cuối 2023-02-22
Ngày Phát Hành 2020-05-20
Đánh Giá 4.82/5 Tổng số 17 Đánh Giá
Nhà Phát Triển Leonardo Riether
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/LeoRiether/CodeforcesPP
URL Trang Trợ Giúp https://github.com/LeoRiether/CodeforcesPP/issues/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Codeforces++",
    "description": "Codeforces extension pack",
    "version": "2.4.0",
    "manifest_version": 2,
    "permissions": [
        "storage",
        "*:\/\/codeforces.com\/*",
        "http:\/\/fonts.googleapis.com\/*",
        "https:\/\/fonts.googleapis.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/codeforces.com\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "contentScript.js"
            ],
            "css": [
                "common.css"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.js"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Codeforces++"
    },
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    }
}