Codeforce submission status link
Add submission status link to the problem page
Vad är Codeforce submission status link?
Codeforce submission status link är en Chrome-tillägg utvecklad av https://fatminmin.com, och dess huvudfunktion är "Add submission status link to the problem page".
Tilläggsskärmbilder
Ladda ner Codeforce submission status link-förlängningens CRX-fil
Ladda ner Codeforce submission status link-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
This extension adds a link to the problem submission page at the end of sidebar for Codeforces. Grundläggande Information om Tillägg
| Namn | |
| ID | pckjjhfnnmonhkfekgnbbdafndfjpjap |
| Officiell webbadress | https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap |
| Beskrivning | Add submission status link to the problem page |
| Filstorlek | 40.68 KB |
| Antal Installationer | 637 |
| Aktuell Version | 1.0.4 |
| Senast Uppdaterad | 2016-08-29 |
| Publiceringsdatum | 2016-08-29 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | https://fatminmin.com |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/chiehmin/CodeforcesExtension |
| Stödda Språk | 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"
}
]
} | |