Advent of Code to Markdown

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

Wat is Advent of Code to Markdown?

Advent of Code to Markdown is een Chrome-extensie ontwikkeld door Kyle Farnung, en de belangrijkste functie is "Converts a given Advent of Code page to a GitHub-compatible Markdown file.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Advent of Code to Markdown

Download Advent of Code to Markdown-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Advent of Code to Markdown Advent of Code to Markdown
ID bhhioamnpnhgcakbdnkgmnjjbjolfjmj
Officiële URL https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj
Beschrijving Converts a given Advent of Code page to a GitHub-compatible Markdown file.
Bestandsgrootte 28.12 KB
Aantal Installaties 190
Huidige Versie 1.3.2
Laatst Bijgewerkt 2022-12-04
Publicatiedatum 2020-12-02
Beoordeling 5.00/5 Totaal 4 Beoordelingen
Ontwikkelaar Kyle Farnung
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/kfarnung/aoc-to-markdown
Help Pagina-URL https://github.com/kfarnung/aoc-to-markdown/issues
Ondersteunde Talen 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"
    ]
}