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”。
擴展截圖
下載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! 擴展基本資訊
| 名稱 | |
| ID | ipbomkmbokofodhhjpipflmdplipblbe |
| 官方網址 | 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"
}
]
} | |