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 |
| 官方URL | 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"
]
} | |