Advent of Code to Markdown
Converts a given Advent of Code page to a GitHub-compatible Markdown file.
Was ist Advent of Code to Markdown?
Advent of Code to Markdown ist eine Chrome-Erweiterung, die von Kyle Farnung entwickelt wurde, und ihr Hauptmerkmal ist "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".
Erweiterungsscreenshots
Advent of Code to Markdown-Erweiterungs-CRX-Datei herunterladen
Laden Sie Advent of Code to Markdown-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Advent of Code to Markdown |
ID | bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Offizielle URL | https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Beschreibung | Converts a given Advent of Code page to a GitHub-compatible Markdown file. |
Dateigröße | 28.12 KB |
Installationsanzahl | 190 |
Aktuelle Version | 1.3.2 |
Letztes Update | 2022-12-04 |
Veröffentlichungsdatum | 2020-12-02 |
Bewertung | 5.00/5 Insgesamt 4 Bewertungen |
Entwickler | Kyle Farnung |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/kfarnung/aoc-to-markdown |
Hilfeseite URL | https://github.com/kfarnung/aoc-to-markdown/issues |
Unterstützte Sprachen | 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" ] } |