Codeforce submission status link
Add submission status link to the problem page
What is Codeforce submission status link?
Codeforce submission status link is a Chrome extension developed by https://fatminmin.com, and its main feature is "Add submission status link to the problem page".
Extension Screenshots
Download Codeforce submission status link Extension CRX File
Download Codeforce submission status link 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
This extension adds a link to the problem submission page at the end of sidebar for Codeforces.
Extension Basic Information
Name | Codeforce submission status link |
ID | pckjjhfnnmonhkfekgnbbdafndfjpjap |
Official URL | https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap |
Description | Add submission status link to the problem page |
File Size | 40.68 KB |
Installation Count | 637 |
Current Version | 1.0.4 |
Last Updated | 2016-08-29 |
Publish Date | 2016-08-29 |
Rating | 3.00/5 Total 2 Ratings |
Developer | https://fatminmin.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/chiehmin/CodeforcesExtension |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codeforce submission status link", "description": "Add submission status link to the problem page", "version": "1.0.4", "icons": { "128": "icon.png" }, "browser_action": { "default_icon": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*.codeforces.com\/problemset\/problem\/*" ], "js": [ "jquery-3.1.0.min.js", "problemset.js" ], "run_at": "document_idle" }, { "matches": [ "http:\/\/*.codeforces.com\/group\/*\/contest\/*\/problem\/*" ], "js": [ "jquery-3.1.0.min.js", "group_problem.js" ], "run_at": "document_idle" } ] } |