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. 扩展基本信息
| 名称 | |
| 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 |
| 电子邮箱 | [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"
]
}
]
} | |