Markdown Formatter
Formats Markdown files as HTML.
Markdown Formatter란 무엇입니까?
Markdown Formatter은(는) Peter Eisentraut에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Formats Markdown files as HTML."입니다.
확장 프로그램 스크린샷
Markdown Formatter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |