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 - это расширение Chrome, разработанное Marcela Errazquin, и его основная функция - "Add a column to the personal stats page which displays how long it took you to get from part 1 to part 2".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Advent of Code Part 2 Timer

Скачайте файлы расширений 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 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
Электронная почта [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": []
}