Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Cos'è Codeforces Solutions?
Codeforces Solutions è un'estensione di Chrome sviluppata da Navpreet Singh, e la sua funzione principale è "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codeforces Solutions
Scarica i file di estensione Codeforces Solutions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
URL Ufficiale | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
Descrizione | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
Dimensione del File | 35.71 KB |
Conteggio Installazioni | 443 |
Versione Corrente | 0.3 |
Ultimo Aggiornamento | 2023-06-22 |
Data di Pubblicazione | 2023-06-20 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Navpreet Singh |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |