Advent of Code to Markdown

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

Advent of Code to Markdown란 무엇입니까?

Advent of Code to Markdown은(는) Kyle Farnung에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts a given Advent of Code page to a GitHub-compatible Markdown file."입니다.

확장 프로그램 스크린샷

screenshot

Advent of Code to Markdown 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Advent of Code to Markdown Advent of Code to Markdown
ID bhhioamnpnhgcakbdnkgmnjjbjolfjmj
공식 URL https://chromewebstore.google.com/detail/advent-of-code-to-markdow/bhhioamnpnhgcakbdnkgmnjjbjolfjmj
설명 Converts a given Advent of Code page to a GitHub-compatible Markdown file.
파일 크기 28.12 KB
설치 횟수 190
현재 버전 1.3.2
최근 업데이트 2022-12-04
출시 날짜 2020-12-02
평점 5.00/5 총 4 개의 평점
개발자 Kyle Farnung
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/kfarnung/aoc-to-markdown
도움말 페이지 URL https://github.com/kfarnung/aoc-to-markdown/issues
지원되는 언어 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"
    ]
}