CFStreak

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

CFStreak क्या है?

CFStreak jindalujjwal0720 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to track your codeforces streak and provide you daily with random problems to solve."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CFStreak एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}