Advent of Code Charts

Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts

What is Advent of Code Charts?

Advent of Code Charts is a Chrome extension developed by Jeroen Heijmans, and its main feature is "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Advent of Code Charts Extension CRX File

Download Advent of Code Charts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Inject charts in your private leaderboard page for Advent of Code.

This is a very adhoc extension, coded in true AoC fashion. No warranty, but lots of fun though!                    

Extension Basic Information

Name Advent of Code Charts Advent of Code Charts
ID ipbomkmbokofodhhjpipflmdplipblbe
Official URL https://chromewebstore.google.com/detail/advent-of-code-charts/ipbomkmbokofodhhjpipflmdplipblbe
Description Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
File Size 120 KB
Installation Count 5,939
Current Version 6.2.1
Last Updated 2023-12-01
Publish Date 2019-12-08
Rating 5.00/5 Total 28 Ratings
Developer Jeroen Heijmans
Email [email protected]
Payment Type free
Extension Website https://github.com/jeroenheijmans/advent-of-code-charts
Help Page URL https://github.com/jeroenheijmans/advent-of-code-charts/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Advent of Code Charts",
    "short_name": "AocCharts",
    "version": "6.2.1",
    "author": "Jeroen Heijmans",
    "description": "Inject charts in your private leaderboard page for Advent of Code - see https:\/\/github.com\/jeroenheijmans\/advent-of-code-charts",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/adventofcode.com\/*",
                "https:\/\/adventofcode.com\/*"
            ],
            "css": [
                "app.css"
            ],
            "js": [
                "moment.min.js",
                "chart.umd.js",
                "chartjs-adapter-moment.min.js",
                "app.js"
            ],
            "run_at": "document_end"
        }
    ]
}