CFStreak

A chrome extension to track your codeforces streak and provide you daily with random problems to solve.

什么是CFStreak?

CFStreak是由jindalujjwal0720开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to track your codeforces streak and provide you daily with random problems to solve.”。

扩展截图

screenshot

下载CFStreak扩展crx文件

下载CFStreak扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Are you passionate about competitive programming and want to maintain a consistent practice routine on CodeForces? Look no further! Introducing the CodeForces Streak Tracker & Daily Problem Solver Chrome extension, your ultimate companion for enhancing your coding skills on CodeForces.

Key Features:

Streak Tracking: Keep your competitive programming streak alive with our intuitive streak tracking feature. The extension will monitor your CodeForces activity and notify you when you're close to breaking your streak. Staying consistent has never been easier.

Daily Problem Challenge: Challenge yourself with a daily dose of programming problems directly within your Chrome browser. Receive a hand-picked, random problem from CodeForces every day, tailored to your skill level. Whether you're a beginner or an expert, there's a problem for you.                    

扩展基本信息

名称 CFStreak CFStreak
ID kdhfjencjobakaojceclpmkpkifjjaga
官方URL https://chromewebstore.google.com/detail/cfstreak/kdhfjencjobakaojceclpmkpkifjjaga
简介 A chrome extension to track your codeforces streak and provide you daily with random problems to solve.
文件大小 121 KB
安装次数 187
当前版本 1.0.1
更新时间 2023-09-06
上架时间 2023-09-05
评分 5.00/5 共1次评分
开发者 jindalujjwal0720
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CFStreak",
    "description": "A chrome extension to track your codeforces streak and provide you daily with random problems to solve.",
    "version": "1.0.1",
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*"
            ],
            "matches": [
                "https:\/\/codeforces.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/icon16.png",
        "48": "assets\/icon48.png",
        "128": "assets\/icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*"
            ],
            "js": [
                "js\/index.js",
                "js\/repository.js"
            ],
            "css": [
                "css\/repository.css"
            ],
            "run_at": "document_end"
        }
    ]
}