Advent of Code Charts
Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
Cos'è Advent of Code Charts?
Advent of Code Charts è un'estensione di Chrome sviluppata da Jeroen Heijmans, e la sua funzione principale è "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Advent of Code Charts
Scarica i file di estensione Advent of Code Charts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Advent of Code Charts |
ID | ipbomkmbokofodhhjpipflmdplipblbe |
URL Ufficiale | https://chromewebstore.google.com/detail/advent-of-code-charts/ipbomkmbokofodhhjpipflmdplipblbe |
Descrizione | Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts |
Dimensione del File | 120 KB |
Conteggio Installazioni | 5,939 |
Versione Corrente | 6.2.1 |
Ultimo Aggiornamento | 2023-12-01 |
Data di Pubblicazione | 2019-12-08 |
Valutazione | 5.00/5 Totale 28 Valutazioni |
Sviluppatore | Jeroen Heijmans |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/jeroenheijmans/advent-of-code-charts |
URL della Pagina di Aiuto | https://github.com/jeroenheijmans/advent-of-code-charts/issues |
Lingue Supportate | 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" } ] } |