AoC Ranking

Visualize the ranking over time of a Advent of Code private leaderboard
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "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"
      ]
    }
  ]
}