CF-Daily

Codeforces extension to display a daily question for each user in each rating group

CF-Daily là gì?

CF-Daily là một tiện ích mở rộng Chrome được phát triển bởi Vansh Sukhija, và tính năng chính của nó là "Codeforces extension to display a daily question for each user in each rating group".

Ả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 CF-Daily

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

                        Introducing "CF-Daily", an extension for daily coding challenges on Codeforces!

Keeping the beginners in mind and after some advice from the masters, we have selected many problems to give as a daily challenge both globally and rating-wise to keep the productivity high.

Clicking the icon of the extension has the whole history of the problems of the day on a particular day to easily navigate and re-attempt them.

Download CF-Daily today and move ahead with your daily coding journey on Codeforces!                    

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

Tên CF-Daily CF-Daily
ID nfkiibjkhejloohngppadofkbjfindia
URL Chính Thức https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia
Mô tả Codeforces extension to display a daily question for each user in each rating group
Kích Thước Tệp 24.21 KB
Số Lần Cài Đặt 377
Phiên Bản Hiện Tại 1.1.1
Cập Nhật Lần Cuối 2023-06-04
Ngày Phát Hành 2023-03-07
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Vansh Sukhija
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",
    "manifest_version": 3,
    "name": "CF-Daily",
    "version": "1.1.1",
    "description": "Codeforces extension to display a daily question for each user in each rating group",
    "content_scripts": [
        {
            "css": [
                "src\/styles.css"
            ],
            "js": [
                "src\/script.js"
            ],
            "matches": [
                "https:\/\/codeforces.com\/problemset*"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/icon16.png",
        "default_popup": "src\/popup.html",
        "default_title": "CF-Daily"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "storage"
    ]
}