Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Qu'est-ce que Codeforces Solutions ?
Codeforces Solutions est une extension Chrome développée par Navpreet Singh, et sa fonction principale est "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Codeforces Solutions
Téléchargez les fichiers d'extension Codeforces Solutions au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
URL Officiel | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
Description | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
Taille du Fichier | 35.71 KB |
Nombre d'Installations | 443 |
Version Actuelle | 0.3 |
Dernière Mise à Jour | 2023-06-22 |
Date de Publication | 2023-06-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Navpreet Singh |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |