CF-Daily

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

CF-Daily क्या है?

CF-Daily Vansh Sukhija द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Codeforces extension to display a daily question for each user in each rating group"।

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

screenshot
screenshot

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

crx प्रारूप में CF-Daily एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम CF-Daily CF-Daily
ID nfkiibjkhejloohngppadofkbjfindia
आधिकारिक URL https://chromewebstore.google.com/detail/cf-daily/nfkiibjkhejloohngppadofkbjfindia
विवरण Codeforces extension to display a daily question for each user in each rating group
फ़ाइल का आकार 24.21 KB
स्थापना संख्या 377
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-06-04
प्रकाशन तिथि 2023-03-07
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर Vansh Sukhija
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
    ]
}