Markdown document renderer

Renders markdown documents as if they were native html pages

Τι είναι το Markdown document renderer;

Το Markdown document renderer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://witiko.blogspot.com, και η κύρια λειτουργία του είναι "Renders markdown documents as if they were native html pages".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Markdown document renderer

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
        }
    ]
}