Advent of Code Part 2 Timer
Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2
Cos'è Advent of Code Part 2 Timer?
Advent of Code Part 2 Timer è un'estensione di Chrome sviluppata da Marcela Errazquin, e la sua funzione principale è "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Advent of Code Part 2 Timer
Scarica i file di estensione Advent of Code Part 2 Timer 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
Advent of Code is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like.
This inserts a new column on the personal stats page: https://adventofcode.com//self
With version 0.0.3, this extension will also attempt to track the first time you open a puzzle and offset your completion times based off of that start time.
Note: You must generate a private leaderboard in order for the extension to work. See: https://adventofcode.com//leaderboard/private Informazioni di Base sull'Estensione
| Nome | |
| ID | fhmjpoppaplfhgnknpbaaklgdnnimfbn |
| URL Ufficiale | https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn |
| Descrizione | Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2 |
| Dimensione del File | 247 KB |
| Conteggio Installazioni | 356 |
| Versione Corrente | 1.0.1 |
| Ultimo Aggiornamento | 2024-02-05 |
| Data di Pubblicazione | 2020-12-31 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | Marcela Errazquin |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/merrazquin/aoc-part2-timer |
| URL della Pagina di Aiuto | https://github.com/merrazquin/aoc-part2-timer/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Advent of Code Part 2 Timer",
"version": "1.0.1",
"description": "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2",
"icons": {
"48": "icons\/aoc-timer-48.png",
"96": "icons\/aoc-timer-96.png"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/adventofcode.com\/*\/leaderboard\/self"
],
"js": [
"stats.js"
]
},
{
"matches": [
"https:\/\/adventofcode.com\/*\/day\/*"
],
"js": [
"tracker.js"
]
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"content_security_policy": []
} | |