Advent of Code Ranking

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

Cos'è Advent of Code Ranking?

Advent of Code Ranking è un'estensione di Chrome sviluppata da Adé Mochtar, e la sua funzione principale è "Visualize the ranking over time of a Advent of Code private leaderboard".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Advent of Code Ranking

Scarica i file di estensione Advent of Code Ranking 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Advent of Code Ranking Advent of Code Ranking
ID jbnlafikncgjjhdkmfhokcplgahebmjl
URL Ufficiale https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl
Descrizione Visualize the ranking over time of a Advent of Code private leaderboard
Dimensione del File 683 KB
Conteggio Installazioni 1,400
Versione Corrente 1.5.2
Ultimo Aggiornamento 2020-12-11
Data di Pubblicazione 2019-12-13
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore Adé Mochtar
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/amochtar/aoc-ranking
Lingue Supportate 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"
            ]
        }
    ]
}