Codeforce submission status link
Add submission status link to the problem page
Cos'è Codeforce submission status link?
Codeforce submission status link è un'estensione di Chrome sviluppata da https://fatminmin.com, e la sua funzione principale è "Add submission status link to the problem page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codeforce submission status link
Scarica i file di estensione Codeforce submission status link in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension adds a link to the problem submission page at the end of sidebar for Codeforces. Informazioni di Base sull'Estensione
| Nome | |
| ID | pckjjhfnnmonhkfekgnbbdafndfjpjap |
| URL Ufficiale | https://chromewebstore.google.com/detail/codeforce-submission-stat/pckjjhfnnmonhkfekgnbbdafndfjpjap |
| Descrizione | Add submission status link to the problem page |
| Dimensione del File | 40.68 KB |
| Conteggio Installazioni | 637 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2016-08-29 |
| Data di Pubblicazione | 2016-08-29 |
| Valutazione | 3.00/5 Totale 2 Valutazioni |
| Sviluppatore | https://fatminmin.com |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/chiehmin/CodeforcesExtension |
| Lingue Supportate | 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"
}
]
} | |