Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Wat is Codeforces Solutions?
Codeforces Solutions is een Chrome-extensie ontwikkeld door Navpreet Singh, en de belangrijkste functie is "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Extensie Screenshots
Download het CRX-bestand van de extensie Codeforces Solutions
Download Codeforces Solutions-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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!
Basisinformatie over de Extensie
Naam | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
Officiële URL | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
Beschrijving | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
Bestandsgrootte | 35.71 KB |
Aantal Installaties | 443 |
Huidige Versie | 0.3 |
Laatst Bijgewerkt | 2023-06-22 |
Publicatiedatum | 2023-06-20 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Navpreet Singh |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |