Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
Qu'est-ce que Advent of Code Ranking ?
Advent of Code Ranking est une extension Chrome développée par Adé Mochtar, et sa fonction principale est "Visualize the ranking over time of a Advent of Code private leaderboard".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Advent of Code Ranking
Téléchargez les fichiers d'extension Advent of Code Ranking au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
URL Officiel | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
Description | Visualize the ranking over time of a Advent of Code private leaderboard |
Taille du Fichier | 683 KB |
Nombre d'Installations | 1,400 |
Version Actuelle | 1.5.2 |
Dernière Mise à Jour | 2020-12-11 |
Date de Publication | 2019-12-13 |
Évaluation | 5.00/5 Total 7 Évaluations |
Développeur | Adé Mochtar |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/amochtar/aoc-ranking |
Langues Prises en Charge | 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" ] } ] } |