Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
Wat is Advent of Code Ranking?
Advent of Code Ranking is een Chrome-extensie ontwikkeld door Adé Mochtar, en de belangrijkste functie is "Visualize the ranking over time of a Advent of Code private leaderboard".
Extensie Screenshots
Download het CRX-bestand van de extensie Advent of Code Ranking
Download Advent of Code Ranking-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
Officiële URL | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
Beschrijving | Visualize the ranking over time of a Advent of Code private leaderboard |
Bestandsgrootte | 683 KB |
Aantal Installaties | 1,400 |
Huidige Versie | 1.5.2 |
Laatst Bijgewerkt | 2020-12-11 |
Publicatiedatum | 2019-12-13 |
Beoordeling | 5.00/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Adé Mochtar |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/amochtar/aoc-ranking |
Ondersteunde Talen | 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" ] } ] } |