Markdown document renderer

Renders markdown documents as if they were native html pages

Markdown document renderer क्या है?

Markdown document renderer https://witiko.blogspot.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Renders markdown documents as if they were native html pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Markdown document renderer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
        }
    ]
}