Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
Co to jest Advent of Code Ranking?
Advent of Code Ranking to rozszerzenie Chrome opracowane przez Adé Mochtar, a jego główną funkcją jest „Visualize the ranking over time of a Advent of Code private leaderboard”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Advent of Code Ranking
Pobierz pliki rozszerzeń Advent of Code Ranking w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
Oficjalny URL | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
Opis | Visualize the ranking over time of a Advent of Code private leaderboard |
Rozmiar pliku | 683 KB |
Liczba instalacji | 1,400 |
Aktualna Wersja | 1.5.2 |
Ostatnia Aktualizacja | 2020-12-11 |
Data Publikacji | 2019-12-13 |
Ocena | 5.00/5 Łącznie 7 Oceny |
Deweloper | Adé Mochtar |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/amochtar/aoc-ranking |
Obsługiwane Języki | 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" ] } ] } |