Advent of Code to Markdown

Converts a given Advent of Code page to a GitHub-compatible Markdown file.

Cos'è Advent of Code to Markdown?

Advent of Code to Markdown è un'estensione di Chrome sviluppata da Kyle Farnung, e la sua funzione principale è "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Advent of Code to Markdown

Scarica i file di estensione Advent of Code to Markdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Advent of Code to Markdown Advent of Code to Markdown
ID bhhioamnpnhgcakbdnkgmnjjbjolfjmj
URL Ufficiale https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj
Descrizione Converts a given Advent of Code page to a GitHub-compatible Markdown file.
Dimensione del File 28.12 KB
Conteggio Installazioni 190
Versione Corrente 1.3.2
Ultimo Aggiornamento 2022-12-04
Data di Pubblicazione 2020-12-02
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore Kyle Farnung
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kfarnung/aoc-to-markdown
URL della Pagina di Aiuto https://github.com/kfarnung/aoc-to-markdown/issues
Lingue Supportate 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"
    ]
}