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
Advent of Code Part 2 Timerとは何ですか?
Advent of Code Part 2 TimerはMarcela Errazquinによって開発されたChromeの拡張機能で、その主な機能は「Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2」です。
拡張機能のスクリーンショット
Advent of Code Part 2 Timer拡張機能のCRXファイルをダウンロード
Advent of Code Part 2 Timer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Advent of Code Part 2 Timer |
ID | fhmjpoppaplfhgnknpbaaklgdnnimfbn |
公式URL | https://chromewebstore.google.com/detail/advent-of-code-part-2-tim/fhmjpoppaplfhgnknpbaaklgdnnimfbn |
説明 | Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2 |
ファイルサイズ | 247 KB |
インストール数 | 356 |
現在のバージョン | 1.0.1 |
最終更新日 | 2024-02-05 |
公開日 | 2020-12-31 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | Marcela Errazquin |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/merrazquin/aoc-part2-timer |
ヘルプページのURL | https://github.com/merrazquin/aoc-part2-timer/issues |
対応言語 | 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": [] } |