Better Challonge Results

Improves the results on Challonge bracket pages

O que é Better Challonge Results?

Better Challonge Results é uma extensão do Chrome desenvolvida por Kevin Leutzinger, e sua principal característica é "Improves the results on Challonge bracket pages".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Better Challonge Results

Baixe arquivos de extensão Better Challonge Results no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        [Source Code](https://github.com/kleutzinger/better-challonge)  

Replaces the results on challonge.com brackets with a more informative table.
Features:
-Shows every player's wins and losses
-Hover over wins and losses to show game counts
-Hover over participants to see their seed

v. 0.0.2
-Fixed RR/Swiss Brackets
-Upsets are italicized

v. 0.0.3
-Fixed tournaments with descriptions

v. 0.0.4
-Don't overwrite bottom table on swiss/RR brackets

v. 0.0.5
-Fixed for players with weird characters in name (like &)

v. 0.0.6
-Added export results thread button

v. 0.0.7
-Reverted results to ordinal numbers

v. 0.0.8
-Fixed NaN players and ? in tournament urls

v. 0.0.9
-Challonge updated itself, this extension only supports double elimination brackets right now                    

Informações Básicas da Extensão

Nome Better Challonge Results Better Challonge Results
ID nlmopkefkemlpdpfkgllbeifljhkfeno
URL Oficial https://chromewebstore.google.com/detail/better-challonge-results/nlmopkefkemlpdpfkgllbeifljhkfeno
Descrição Improves the results on Challonge bracket pages
Tamanho do Arquivo 225 KB
Contagem de Instalações 185
Versão Atual 0.0.9
Última Atualização 2020-09-14
Data de Publicação 2020-03-24
Classificação 5.00/5 Total de 6 Avaliações
Desenvolvedor Kevin Leutzinger
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kleutzinger/better-challonge
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Better Challonge Results",
    "short_name": "challonge+",
    "description": "Improves the results on Challonge bracket pages",
    "version": "0.0.9",
    "icons": {
        "16": "\/pics\/icon16.png",
        "48": "\/pics\/icon48.png",
        "128": "\/pics\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.challonge.com\/*"
            ],
            "js": [
                "jquery.js",
                "tablemaker.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ]
}