Codeforces Solutions
Want to post your solution and read others solution like in LeetCode? This extension is all you need.
Qu'est-ce que Codeforces Solutions ?
Codeforces Solutions est une extension Chrome développée par samuellaskar3, et sa fonction principale est "Want to post your solution and read others solution like in LeetCode? This extension is all you need.".
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
Have you ever felt the need of solutions features in codeforces like we have in leetcode? This extension is all you need. * You can post your own solution. * You can read others best rated solution. * Comment on others solution. * Get Solution right after contest ends. How to use it? * After installing it, it will place two buttons on every codeforces problem page. One for "see solutions" and other "write solution". * If you are stuck in a problem and you want to see the best solution, click on "see solution" and it would take you to the solution which is there in github issues. * If you want to post your solution (please do so), click on "write solution", it would take you to github with new issue tab, template would be already provided to you. Just paste your solution there and put some explanation and thus help others. Privacy Don't worry, it will only access codeforces website, also extension code is open source. Hope you enjoy it.
Informations de Base sur l'Extension
Nom | Codeforces Solutions |
ID | ojeklbemjjglhffombiogeabanjkofhl |
URL Officiel | https://chromewebstore.google.com/detail/codeforces-solutions/ojeklbemjjglhffombiogeabanjkofhl |
Description | Want to post your solution and read others solution like in LeetCode? This extension is all you need. |
Taille du Fichier | 7.47 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2024-01-01 |
Date de Publication | 2024-01-01 |
Développeur | samuellaskar3 |
[email protected] | |
Type de Paiement | free |
URL de la Page de Politique de Confidentialité | https://aktarcompany.blogspot.com/2023/12/codeforces-solutions-privacy-policy.html |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "1.0", "name": "Codeforces Solutions", "description": "Want to post your solution and read others solution like in LeetCode? This extension is all you need.", "permissions": [ "https:\/\/codeforces.com\/*" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/codeforces.com\/*" ], "js": [ "content.js" ], "css": [ "styles.css" ] } ] } |