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ファイルをダウンロード

Advent of Code to Markdown拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    ]
}