Advent of Code to Markdown
Converts a given Advent of Code page to a GitHub-compatible Markdown file.
Hvad er Advent of Code to Markdown?
Advent of Code to Markdown er en Chrome-udvidelse udviklet af Kyle Farnung, og dens hovedfunktion er "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".
Udvidelsesskærmbilleder
Download Advent of Code to Markdown-udvidelses-CRX-fil
Download Advent of Code to Markdown-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Advent of Code to Markdown |
ID | bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Officiel URL | https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj |
Beskrivelse | Converts a given Advent of Code page to a GitHub-compatible Markdown file. |
Filstørrelse | 28.12 KB |
Antal Installationer | 190 |
Nuværende Version | 1.3.2 |
Senest Opdateret | 2022-12-04 |
Udgivelsesdato | 2020-12-02 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | Kyle Farnung |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/kfarnung/aoc-to-markdown |
Hjælpeside-URL | https://github.com/kfarnung/aoc-to-markdown/issues |
Understøttede Sprog | 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" ] } |