Advent of Code Ranking

Visualize the ranking over time of a Advent of Code private leaderboard

O que é Advent of Code Ranking?

Advent of Code Ranking é uma extensão do Chrome desenvolvida por Adé Mochtar, e sua principal característica é "Visualize the ranking over time of a Advent of Code private leaderboard".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Advent of Code Ranking

Baixe arquivos de extensão Advent of Code Ranking 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

                        Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. On AdventOfCode.com you can set up a private leaderboard to compete with your friends, colleagues and peers.

This extension visualizes the ranking over time of those private leaderboards. It inserts a chart below the private leaderboard.                    

Informações Básicas da Extensão

Nome Advent of Code Ranking Advent of Code Ranking
ID jbnlafikncgjjhdkmfhokcplgahebmjl
URL Oficial https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl
Descrição Visualize the ranking over time of a Advent of Code private leaderboard
Tamanho do Arquivo 683 KB
Contagem de Instalações 1,400
Versão Atual 1.5.2
Última Atualização 2020-12-11
Data de Publicação 2019-12-13
Classificação 5.00/5 Total de 7 Avaliações
Desenvolvedor Adé Mochtar
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/amochtar/aoc-ranking
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Advent of Code Ranking",
    "version": "1.5.2",
    "description": "Visualize the ranking over time of a Advent of Code private leaderboard",
    "icons": {
        "48": "icons\/aoc-ranking-48.png",
        "96": "icons\/aoc-ranking-96.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/adventofcode.com\/*\/leaderboard\/private\/view\/*"
            ],
            "js": [
                "ranking.js"
            ],
            "css": [
                "ranking.css"
            ]
        }
    ]
}