Markdown Formatter
Formats Markdown files as HTML.
Was ist Markdown Formatter?
Markdown Formatter ist eine Chrome-Erweiterung, die von Peter Eisentraut entwickelt wurde, und ihr Hauptmerkmal ist "Formats Markdown files as HTML.".
Erweiterungsscreenshots
Markdown Formatter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Markdown Formatter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Markdown Formatter |
ID | koaflnhbkgmemhdekjhffbhldgjpiolm |
Offizielle URL | https://chromewebstore.google.com/detail/markdown-formatter/koaflnhbkgmemhdekjhffbhldgjpiolm |
Beschreibung | Formats Markdown files as HTML. |
Dateigröße | 43.14 KB |
Installationsanzahl | 145 |
Aktuelle Version | 1.2014.12.20 |
Letztes Update | 2014-12-21 |
Veröffentlichungsdatum | 2014-12-21 |
Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
Entwickler | Peter Eisentraut |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/petere/markdown-formatter-for-chrome |
Hilfeseite URL | https://github.com/petere/markdown-formatter-for-chrome/issues |
Unterstützte Sprachen | 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" } } |