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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jeroen Heijmans และคุณลักษณะหลักของมันคือ "Inject charts in your private leaderboard page for Advent of Code - see https://github.com/jeroenheijmans/advent-of-code-charts"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Advent of Code Charts

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}