Advent of Code Ranking
Visualize the ranking over time of a Advent of Code private leaderboard
Advent of Code Rankingとは何ですか?
Advent of Code RankingはAdé Mochtarによって開発されたChromeの拡張機能で、その主な機能は「Visualize the ranking over time of a Advent of Code private leaderboard」です。
拡張機能のスクリーンショット
Advent of Code Ranking拡張機能のCRXファイルをダウンロード
Advent of Code Ranking拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Advent of Code Ranking |
ID | jbnlafikncgjjhdkmfhokcplgahebmjl |
公式URL | https://chromewebstore.google.com/detail/advent-of-code-ranking/jbnlafikncgjjhdkmfhokcplgahebmjl |
説明 | Visualize the ranking over time of a Advent of Code private leaderboard |
ファイルサイズ | 683 KB |
インストール数 | 1,400 |
現在のバージョン | 1.5.2 |
最終更新日 | 2020-12-11 |
公開日 | 2019-12-13 |
評価 | 5.00/5 合計 7 レビュー |
開発者 | Adé Mochtar |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/amochtar/aoc-ranking |
対応言語 | 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" ] } ] } |