Advent of Code Charts
Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
Qu'est-ce que Advent of Code Charts ?
Advent of Code Charts est une extension Chrome développée par Jeroen Heijmans, et sa fonction principale est "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Advent of Code Charts
Téléchargez les fichiers d'extension Advent of Code Charts au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | Advent of Code Charts |
ID | ipbomkmbokofodhhjpipflmdplipblbe |
URL Officiel | 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 |
Taille du Fichier | 120 KB |
Nombre d'Installations | 5,939 |
Version Actuelle | 6.2.1 |
Dernière Mise à Jour | 2023-12-01 |
Date de Publication | 2019-12-08 |
Évaluation | 5.00/5 Total 28 Évaluations |
Développeur | Jeroen Heijmans |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jeroenheijmans/advent-of-code-charts |
URL de la Page d'Aide | https://github.com/jeroenheijmans/advent-of-code-charts/issues |
Langues Prises en Charge | 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" } ] } |