Markdown document renderer

Renders markdown documents as if they were native html pages

Markdown document renderer란 무엇입니까?

Markdown document renderer은(는) https://witiko.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Renders markdown documents as if they were native html pages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Markdown document renderer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Over the last couple of years, markdown has become the de-facto standard for writing prose and poetry alike. Borrowing its syntax from plaintext e-mail formatting conventions, markdown has been praised for its slenderness as much as its easy readability.

With the language having become so prominent, it is difficult to see why none of the major web browsers comes pre-packed with the ability to render markdown documents. For this reason, I have put together a simple userscript wrapper around the  markdown renderer, which ensures that any pages with the .md, .mdown, .markdn or .markdown suffix are rendered as an html document rather than plain text.                    

확장 프로그램 기본 정보

이름 Markdown document renderer Markdown document renderer
ID ccpjjnlhmfckhpjagolgbdncaiadpdpi
공식 URL https://chromewebstore.google.com/detail/markdown-document-rendere/ccpjjnlhmfckhpjagolgbdncaiadpdpi
설명 Renders markdown documents as if they were native html pages
파일 크기 40.25 KB
설치 횟수 113
현재 버전 1.0.3
최근 업데이트 2014-08-19
출시 날짜 2014-08-18
개발자 https://witiko.blogspot.com
결제 유형 free
확장 프로그램 웹 사이트 http://witiko.blogspot.cz/2014/08/takedown-markdown-document-renderer.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "converted_from_user_script": true,
    "name": "Markdown document renderer",
    "short_name": "Takedown",
    "author": "Witiko ",
    "description": "Renders markdown documents as if they were native html pages",
    "version": "1.0.3",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "exclude_globs": [],
            "include_globs": [
                "*.markdown",
                "*.markdn",
                "*.mdown",
                "*.md"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "takedown.user.js"
            ],
            "run_at": "document_end"
        }
    ]
}