Advent of Code to Markdown

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

Qu'est-ce que Advent of Code to Markdown ?

Advent of Code to Markdown est une extension Chrome développée par Kyle Farnung, et sa fonction principale est "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Advent of Code to Markdown

Téléchargez les fichiers d'extension Advent of Code to Markdown au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Advent of Code to Markdown Advent of Code to Markdown
ID bhhioamnpnhgcakbdnkgmnjjbjolfjmj
URL Officiel 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.
Taille du Fichier 28.12 KB
Nombre d'Installations 190
Version Actuelle 1.3.2
Dernière Mise à Jour 2022-12-04
Date de Publication 2020-12-02
Évaluation 5.00/5 Total 4 Évaluations
Développeur Kyle Farnung
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kfarnung/aoc-to-markdown
URL de la Page d'Aide https://github.com/kfarnung/aoc-to-markdown/issues
Langues Prises en Charge 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"
    ]
}