Codeforces Solutions

A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…

ما هو Codeforces Solutions؟

Codeforces Solutions هو إضافة Chrome تم تطويرها بواسطة Navpreet Singh، والميزة الرئيسية لها هي "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Codeforces Solutions

قم بتنزيل ملفات الامتداد Codeforces Solutions بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A chrome extension to get all submitted solutions of a particular problem.

How it works?

Download this extension.
Then browse any codeforces problem and click on the extension.
You get all submitted solutions!                    

معلومات أساسية عن التمديد

الاسم Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
عنوان URL الرسمي https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
الوصف A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
حجم الملف 35.71 KB
عدد التثبيتات 443
النسخة الحالية 0.3
آخر تحديث 2023-06-22
تاريخ النشر 2023-06-20
تقييم 5.00/5 مجموع تقييمات 1
المطور Navpreet Singh
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Codeforces Solutions",
    "version": "0.3",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/codeforces.com\/*",
                "http:\/\/codeforces.com\/*"
            ],
            "js": [
                "jquery-3.5.0.min.js",
                "content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    }
}