Advent of Code to Markdown
Converts a given Advent of Code page to a GitHub-compatible Markdown file.
什麼是Advent of Code to Markdown?
Advent of Code to Markdown是由Kyle Farnung開發的Chrome擴展程式,該擴展的主要功能是“Converts a given Advent of Code page to a GitHub-compatible Markdown file.”。
擴展截圖
下載Advent of Code to Markdown擴展crx文件
下載Advent of Code to Markdown擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Easily generate markdown from an Advent of Code problem description. Simply activate the extension to generate markdown from the current page and save it to a file. 擴展基本資訊
| 名稱 | |
| ID | bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
| 官方網址 | https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
| 簡介 | Converts a given Advent of Code page to a GitHub-compatible Markdown file. |
| 檔案大小 | 28.12 KB |
| 安裝次數 | 190 |
| 目前版本 | 1.3.2 |
| 更新時間 | 2022-12-04 |
| 上架時間 | 2020-12-02 |
| 評分 | 5.00/5 共 4 次評分 |
| 開發者 | Kyle Farnung |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/kfarnung/aoc-to-markdown |
| 說明頁面URL | https://github.com/kfarnung/aoc-to-markdown/issues |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Advent of Code to Markdown",
"version": "1.3.2",
"description": "Converts a given Advent of Code page to a GitHub-compatible Markdown file.",
"icons": {
"16": "icons\/aoc-to-markdown-16.png",
"32": "icons\/aoc-to-markdown-32.png",
"48": "icons\/aoc-to-markdown-48.png",
"128": "icons\/aoc-to-markdown-128.png"
},
"background": {
"scripts": [
"background_scripts\/index.js"
]
},
"content_scripts": [
{
"js": [
"\/content_scripts\/index.js"
],
"matches": [
"*:\/\/adventofcode.com\/*\/day\/*"
]
}
],
"page_action": {
"default_icon": {
"16": "icons\/aoc-to-markdown-16.png",
"32": "icons\/aoc-to-markdown-32.png",
"48": "icons\/aoc-to-markdown-48.png",
"128": "icons\/aoc-to-markdown-128.png"
},
"default_title": "Advent of Code to Markdown"
},
"permissions": [
"downloads"
]
} | |