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文件

下載Markdown document renderer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    ]
}