Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
Codeforces Solutions क्या है?
Codeforces Solutions Navpreet Singh द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Codeforces Solutions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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!
एक्सटेंशन की मूल जानकारी
नाम | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
आधिकारिक URL | https://chromewebstore.google.com/detail/codeforces-solutions/iegpelnggolflcmkmjnhmfhjlnfpbefj |
विवरण | A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any… |
फ़ाइल का आकार | 35.71 KB |
स्थापना संख्या | 443 |
वर्तमान संस्करण | 0.3 |
अंतिम अपडेट | 2023-06-22 |
प्रकाशन तिथि | 2023-06-20 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Navpreet Singh |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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" } } |