Codeforces Solutions

A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…

Codeforces Solutions là gì?

Codeforces Solutions là một tiện ích mở rộng Chrome được phát triển bởi Navpreet Singh, và tính năng chính của nó là "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".

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

screenshot
screenshot

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

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

                        A chrome extension to get all submitted solutions of a particular problem.

How it works?

Download this extension.
Then browse any codeforces problem and click on the extension.
You get all submitted solutions!                    

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

Tên Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
URL Chính Thức https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
Mô tả A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Kích Thước Tệp 35.71 KB
Số Lần Cài Đặt 443
Phiên Bản Hiện Tại 0.3
Cập Nhật Lần Cuối 2023-06-22
Ngày Phát Hành 2023-06-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Navpreet Singh
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeforces Solutions",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*",
                "http:\/\/codeforces.com\/*"
            ],
            "js": [
                "jquery-3.5.0.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}