Advent of Code Charts

Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts

Advent of Code Chartsとは何ですか?

Advent of Code ChartsはJeroen Heijmansによって開発されたChromeの拡張機能で、その主な機能は「Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Advent of Code Charts拡張機能のCRXファイルをダウンロード

Advent of Code Charts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Advent of Code Charts Advent of Code Charts
ID ipbomkmbokofodhhjpipflmdplipblbe
公式URL https://chromewebstore.google.com/detail/advent-of-code-charts/ipbomkmbokofodhhjpipflmdplipblbe
説明 Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
ファイルサイズ 120 KB
インストール数 5,939
現在のバージョン 6.2.1
最終更新日 2023-12-01
公開日 2019-12-08
評価 5.00/5 合計 28 レビュー
開発者 Jeroen Heijmans
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jeroenheijmans/advent-of-code-charts
ヘルプページのURL https://github.com/jeroenheijmans/advent-of-code-charts/issues
対応言語 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"
        }
    ]
}