Markdown document renderer

Renders markdown documents as if they were native html pages

Co je Markdown document renderer?

Markdown document renderer je rozšíření Chrome vyvinuté https://witiko.blogspot.com, a jeho hlavní funkcí je „Renders markdown documents as if they were native html pages“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Markdown document renderer

Stáhněte si soubory rozšíření Markdown document renderer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Markdown document renderer Markdown document renderer
ID ccpjjnlhmfckhpjagolgbdncaiadpdpi
Oficiální URL https://chromewebstore.google.com/detail/markdown-document-rendere/ccpjjnlhmfckhpjagolgbdncaiadpdpi
Popis Renders markdown documents as if they were native html pages
Velikost souboru 40.25 KB
Počet instalací 113
Aktuální Verze 1.0.3
Poslední Aktualizace 2014-08-19
Datum Vydání 2014-08-18
Vývojář https://witiko.blogspot.com
Typ Platby free
Webové stránky Rozšíření http://witiko.blogspot.cz/2014/08/takedown-markdown-document-renderer.html
Podporované Jazyky 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"
        }
    ]
}