Contest Standings
Shows standings with updated names from codeforces
¿Qué es Contest Standings?
Contest Standings es una extensión de Chrome desarrollada por BigBag, y su función principal es "Shows standings with updated names from codeforces".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Contest Standings
Descarga archivos de extensión Contest Standings en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
Shows standings of team contests with updated names from codeforces. Also, the total rating of each team is shown. Works on snarknews' platforms and yandex.contest. For the first one also shows the list of all teams sorted by their rating.
Información Básica de la Extensión
Nombre | Contest Standings |
ID | jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
URL Oficial | https://chromewebstore.google.com/detail/contest-standings/jmhjngpdfdmgmngfmbbjkmnpmfcbbcii |
Descripción | Shows standings with updated names from codeforces |
Tamaño del Archivo | 105 KB |
Cantidad de Instalaciones | 66 |
Versión Actual | 3.3.5 |
Última Actualización | 2021-11-09 |
Fecha de Publicación | 2020-04-18 |
Calificación | 5.00/5 Total de 2 Calificaciones |
Desarrollador | BigBag |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Contest Standings", "short_name": "Contest Standings", "version": "3.3.5", "description": "Shows standings with updated names from codeforces", "manifest_version": 2, "icons": { "16": "static\/icon16.png", "32": "static\/icon32.png", "48": "static\/icon48.png", "128": "static\/icon128.png" }, "permissions": [ "background", "http:\/\/codeforces.com\/" ], "content_scripts": [ { "js": [ "include.js", "third_party\/jquery.js", "updateStandings.js" ], "css": [ "styles.css" ], "matches": [ "http:\/\/*.snarknews.info\/*", "http:\/\/opencup.ru\/*", "https:\/\/official.contest.yandex.ru\/*", "https:\/\/official.contest.yandex.com\/*", "https:\/\/contest.yandex.ru\/*", "https:\/\/contest.yandex.com\/*", "http:\/\/*.mipt.ru\/*" ] } ], "background": { "scripts": [ "include.js", "third_party\/jquery.js", "background.js" ] }, "browser_action": { "default_title": "Contest Standings", "default_icon": "static\/icon16.png", "default_popup": "popup.html" } } |