Advent of Code Charts

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

Vad är Advent of Code Charts?

Advent of Code Charts är en Chrome-tillägg utvecklad av Jeroen Heijmans, och dess huvudfunktion är "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Advent of Code Charts-förlängningens CRX-fil

Ladda ner Advent of Code Charts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Advent of Code Charts Advent of Code Charts
ID ipbomkmbokofodhhjpipflmdplipblbe
Officiell webbadress https://chromewebstore.google.com/detail/advent-of-code-charts/ipbomkmbokofodhhjpipflmdplipblbe
Beskrivning Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
Filstorlek 120 KB
Antal Installationer 5,939
Aktuell Version 6.2.1
Senast Uppdaterad 2023-12-01
Publiceringsdatum 2019-12-08
Betyg 5.00/5 Totalt 28 Betyg
Utvecklare Jeroen Heijmans
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/jeroenheijmans/advent-of-code-charts
Hjälpsida URL https://github.com/jeroenheijmans/advent-of-code-charts/issues
Stödda Språk 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"
        }
    ]
}