Codeforces Enhancer
Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link
Cos'è Codeforces Enhancer?
Codeforces Enhancer è un'estensione di Chrome sviluppata da alexander.agulenko, e la sua funzione principale è "Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Codeforces Enhancer
Scarica i file di estensione Codeforces Enhancer 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
Chrome extension that makes Codeforces better: supports multiple ratings graph, colorizes standings by used programming languages, adds "Hide/Show solved problems" link to Problemset page
Informazioni di Base sull'Estensione
Nome | Codeforces Enhancer |
ID | ocmandagmgmkcplckgnfgaokpgkfenmp |
URL Ufficiale | https://chromewebstore.google.com/detail/codeforces-enhancer/ocmandagmgmkcplckgnfgaokpgkfenmp |
Descrizione | Makes Codeforces better: multiple ratings graph, colorizes standings, adds "Hide/Show solved problems" link |
Dimensione del File | 25.12 KB |
Conteggio Installazioni | 13,461 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2020-07-23 |
Data di Pubblicazione | 2015-07-27 |
Valutazione | 4.40/5 Totale 35 Valutazioni |
Sviluppatore | alexander.agulenko |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://codeforces.com/profile/agul |
URL della Pagina di Aiuto | https://github.com/agul/cf-enhancer |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "content_scripts": [ { "all_frames": false, "js": [ "options.js", "multiGraph.js" ], "matches": [ "https:\/\/codeforces.com\/profile\/*", "https:\/\/www.codeforces.com\/profile\/*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "colorizeStandings.js" ], "matches": [ "https:\/\/codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/standings*", "https:\/\/www.codeforces.com\/contest\/*\/room\/*", "https:\/\/codeforces.com\/contest\/*\/room\/*", "https:\/\/www.codeforces.com\/gym\/*\/standings*", "https:\/\/codeforces.com\/gym\/*\/standings*", "https:\/\/www.codeforces.com\/spectator\/*\/standings*", "https:\/\/codeforces.com\/spectator\/*\/standings*" ], "run_at": "document_idle" }, { "all_frames": false, "js": [ "options.js", "hideSolved.js" ], "matches": [ "https:\/\/codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset", "https:\/\/www.codeforces.com\/problemset\/page\/*", "https:\/\/codeforces.com\/problemset\/page\/*" ], "run_at": "document_idle" } ], "description": "Makes Codeforces better: multiple ratings graph, colorizes standings, adds \"Hide\/Show solved problems\" link", "icons": { "16": "logo_16x16.png", "48": "logo_48x48.png", "128": "logo_128x128.png" }, "manifest_version": 2, "name": "Codeforces Enhancer", "short_name": "CF Enhancer", "permissions": [ "storage" ], "version": "1.2", "options_page": "options_page.html", "options_ui": { "page": "options.html", "chrome_style": true } } |