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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}