Advent of Code to Markdown
Converts a given Advent of Code page to a GitHub-compatible Markdown file.
What is Advent of Code to Markdown?
Advent of Code to Markdown is a Chrome extension developed by Kyle Farnung, and its main feature is "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".
Extension Screenshots
Download Advent of Code to Markdown Extension CRX File
Download Advent of Code to Markdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Advent of Code to Markdown |
ID | bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Official URL | https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Description | Converts a given Advent of Code page to a GitHub-compatible Markdown file. |
File Size | 28.12 KB |
Installation Count | 190 |
Current Version | 1.3.2 |
Last Updated | 2022-12-04 |
Publish Date | 2020-12-02 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Kyle Farnung |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kfarnung/aoc-to-markdown |
Help Page URL | https://github.com/kfarnung/aoc-to-markdown/issues |
Supported Languages | 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" ] } |