Codeforces Solutions
Want to post your solution and read others solution like in LeetCode? This extension is all you need.
Codeforces Solutions क्या है?
Codeforces Solutions samuellaskar3 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Want to post your solution and read others solution like in LeetCode? This extension is all you need."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Codeforces Solutions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Codeforces Solutions |
ID | ojeklbemjjglhffombiogeabanjkofhl |
आधिकारिक URL | https://chromewebstore.google.com/detail/codeforces-solutions/ojeklbemjjglhffombiogeabanjkofhl |
विवरण | Want to post your solution and read others solution like in LeetCode? This extension is all you need. |
फ़ाइल का आकार | 7.47 KB |
स्थापना संख्या | 34 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2024-01-01 |
प्रकाशन तिथि | 2024-01-01 |
डेवलपर | samuellaskar3 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
गोपनीयता नीति पृष्ठ URL | https://aktarcompany.blogspot.com/2023/12/codeforces-solutions-privacy-policy.html |
समर्थित भाषाएँ | 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" ] } ] } |