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
电子邮箱 [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"
        }
    ]
}