Codeforces Solutions

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

Was ist Codeforces Solutions?

Codeforces Solutions ist eine Chrome-Erweiterung, die von Navpreet Singh entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".

Erweiterungsscreenshots

screenshot
screenshot

Codeforces Solutions-Erweiterungs-CRX-Datei herunterladen

Laden Sie Codeforces Solutions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Codeforces Solutions Codeforces Solutions
ID iegpelnggolflcmkmjnhmfhjlnfpbefj
Offizielle URL https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj
Beschreibung A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Dateigröße 35.71 KB
Installationsanzahl 443
Aktuelle Version 0.3
Letztes Update 2023-06-22
Veröffentlichungsdatum 2023-06-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Navpreet Singh
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    }
}