Codeforce submission status link
Add submission status link to the problem page
Hvad er Codeforce submission status link?
Codeforce submission status link er en Chrome-udvidelse udviklet af https://fatminmin.com, og dens hovedfunktion er "Add submission status link to the problem page".
Udvidelsesskærmbilleder
Download Codeforce submission status link-udvidelses-CRX-fil
Download Codeforce submission status link-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension adds a link to the problem submission page at the end of sidebar for Codeforces.
Grundlæggende oplysninger om udvidelsen
Navn | Codeforce submission status link |
ID | pckjjhfnnmonhkfekgnbbdafndfjpjap |
Officiel URL | https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap |
Beskrivelse | Add submission status link to the problem page |
Filstørrelse | 40.68 KB |
Antal Installationer | 637 |
Nuværende Version | 1.0.4 |
Senest Opdateret | 2016-08-29 |
Udgivelsesdato | 2016-08-29 |
Bedømmelse | 3.00/5 Samlet 2 Bedømmelser |
Udvikler | https://fatminmin.com |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/chiehmin/CodeforcesExtension |
Understøttede Sprog | 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" } ] } |