Codeforces Solutions

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

Co je Codeforces Solutions?

Codeforces Solutions je rozšíření Chrome vyvinuté Navpreet Singh, a jeho hlavní funkcí je „A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Codeforces Solutions

Stáhněte si soubory rozšíření Codeforces Solutions ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
Oficiální URL https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
Popis A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Velikost souboru 35.71 KB
Počet instalací 443
Aktuální Verze 0.3
Poslední Aktualizace 2023-06-22
Datum Vydání 2023-06-20
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Navpreet Singh
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
    }
}