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 |
官方網址 | 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" ] } ] } |