Markdown Formatter

Formats Markdown files as HTML.

Qu'est-ce que Markdown Formatter ?

Markdown Formatter est une extension Chrome développée par Peter Eisentraut, et sa fonction principale est "Formats Markdown files as HTML.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Markdown Formatter

Téléchargez les fichiers d'extension Markdown Formatter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This is an extension that formats Markdown text as HTML. Click on the Markdown icon in the address bar or press Ctrl+M to toggle between raw and HTML view.

It works for the following file extensions:

- .md
- .markdown
- .text
- .txt

Some URLs to try:

- https://raw.githubusercontent.com/petere/markdown-formatter-for-chrome/master/README.md
- https://raw.githubusercontent.com/jgm/CommonMark/master/README.md
- http://daringfireball.net/projects/markdown/syntax.text
- http://fletcherpenney.net/multimarkdown/index.txt                    

Informations de Base sur l'Extension

Nom Markdown Formatter Markdown Formatter
ID koaflnhbkgmemhdekjhffbhldgjpiolm
URL Officiel https://chromewebstore.google.com/detail/markdown-formatter/koaflnhbkgmemhdekjhffbhldgjpiolm
Description Formats Markdown files as HTML.
Taille du Fichier 43.14 KB
Nombre d'Installations 145
Version Actuelle 1.2014.12.20
Dernière Mise à Jour 2014-12-21
Date de Publication 2014-12-21
Évaluation 4.00/5 Total 1 Évaluations
Développeur Peter Eisentraut
Type de Paiement free
Site Web de l'Extension https://github.com/petere/markdown-formatter-for-chrome
URL de la Page d'Aide https://github.com/petere/markdown-formatter-for-chrome/issues
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown Formatter",
    "version": "1.2014.12.20",
    "description": "Formats Markdown files as HTML.",
    "homepage_url": "https:\/\/github.com\/petere\/markdown-formatter-for-chrome",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "commands": {
        "toggle-markdown": {
            "suggested_key": {
                "default": "Ctrl+M",
                "mac": "MacCtrl+M"
            },
            "description": "Toggle between Markdown and HTML"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*.md",
                "*:\/\/*\/*.markdown",
                "*:\/\/*\/*.text",
                "*:\/\/*\/*.txt",
                "file:\/\/*.md",
                "file:\/\/*.markdown",
                "file:\/\/*.text",
                "file:\/\/*.txt"
            ],
            "js": [
                "commonmark.js",
                "content.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icon-19.png",
            "38": "icon-38.png"
        },
        "default_title": "Markdown"
    }
}