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 là gì?

Advent of Code Charts là một tiện ích mở rộng Chrome được phát triển bởi Jeroen Heijmans, và tính năng chính của nó là "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Advent of Code Charts

Tải xuống các tệp mở rộng Advent of Code Charts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Advent of Code Charts Advent of Code Charts
ID ipbomkmbokofodhhjpipflmdplipblbe
URL Chính Thức https://chromewebstore.google.com/detail/advent-of-code-charts/ipbomkmbokofodhhjpipflmdplipblbe
Mô tả Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts
Kích Thước Tệp 120 KB
Số Lần Cài Đặt 5,939
Phiên Bản Hiện Tại 6.2.1
Cập Nhật Lần Cuối 2023-12-01
Ngày Phát Hành 2019-12-08
Đánh Giá 5.00/5 Tổng số 28 Đánh Giá
Nhà Phát Triển Jeroen Heijmans
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jeroenheijmans/advent-of-code-charts
URL Trang Trợ Giúp https://github.com/jeroenheijmans/advent-of-code-charts/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}