Codeforces Solutions
A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…
What is Codeforces Solutions?
Codeforces Solutions is a Chrome extension developed by Navpreet Singh, and its main feature is "A chrome extension to get all submitted solutions of a particular problem. How it works? Download this extension. Then browse any…".
Extension Screenshots
Download Codeforces Solutions Extension CRX File
Download Codeforces Solutions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | Codeforces Solutions |
ID | iegpelnggolflcmkmjnhmfhjlnfpbefj |
Official URL | 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… |
File Size | 35.71 KB |
Installation Count | 443 |
Current Version | 0.3 |
Last Updated | 2023-06-22 |
Publish Date | 2023-06-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Navpreet Singh |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |