Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
What is Advent of Code Ranking?
Advent of Code Ranking is a Chrome extension developed by Adé Mochtar, and its main feature is "Visualize the ranking over time of a Advent of Code private leaderboard".
Extension Screenshots
Download Advent of Code Ranking Extension CRX File
Download Advent of Code Ranking extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
Official URL | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
Description | Visualize the ranking over time of a Advent of Code private leaderboard |
File Size | 683 KB |
Installation Count | 1,400 |
Current Version | 1.5.2 |
Last Updated | 2020-12-11 |
Publish Date | 2019-12-13 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Adé Mochtar |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/amochtar/aoc-ranking |
Supported Languages | 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" ] } ] } |