Markdown Formatter
Formats Markdown files as HTML.
Markdown Formatterとは何ですか?
Markdown FormatterはPeter Eisentrautによって開発されたChromeの拡張機能で、その主な機能は「Formats Markdown files as HTML.」です。
拡張機能のスクリーンショット
Markdown Formatter拡張機能のCRXファイルをダウンロード
Markdown Formatter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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
拡張機能の基本情報
名前 | Markdown Formatter |
ID | koaflnhbkgmemhdekjhffbhldgjpiolm |
公式URL | https://chromewebstore.google.com/detail/markdown-formatter/koaflnhbkgmemhdekjhffbhldgjpiolm |
説明 | Formats Markdown files as HTML. |
ファイルサイズ | 43.14 KB |
インストール数 | 145 |
現在のバージョン | 1.2014.12.20 |
最終更新日 | 2014-12-21 |
公開日 | 2014-12-21 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Peter Eisentraut |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/petere/markdown-formatter-for-chrome |
ヘルプページのURL | https://github.com/petere/markdown-formatter-for-chrome/issues |
対応言語 | 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" } } |