Light Markdown Editor
A standalone Markdown editor
Light Markdown Editor란 무엇입니까?
Light Markdown Editor은(는) Jørgen NYSTAD에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A standalone Markdown editor"입니다.
확장 프로그램 스크린샷
Light Markdown Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Light Markdown Editor is a live editor for typing Markdown with a live preview in Google Chrome. lightmd does not rely on a backend. It does not send the content to any external server. lightmd is designed to be lightweight, not feature rich, while still providing some flexibility as a scratchpad. Preview supports three styles, None (browser default rendering), Github (inspired), and a custom lightmd style (seen in screenshot). lightmd allows for export to .md, HTML, and printing directly from the preview frame (must hit the Print button, not Ctrl+P). The extension stores your content while you type in the browsers local storage. It has 4 "slots" which can be swapped between as you wish. NB! Wiping browser local storage will wipe the contents stored in these editors! lightmd uses a JavaScript library for converting Markdown to HTML (markdown-js), which has some limitations. It only supports basic Markdown and does not support inline HTML. lightmd is open source and available on GitHub: https://github.com/jorgenys/lightmd
확장 프로그램 기본 정보
이름 | Light Markdown Editor |
ID | efjgdajhhphockmgbagbfoaidoeinelm |
공식 URL | https://chromewebstore.google.com/detail/light-markdown-editor/efjgdajhhphockmgbagbfoaidoeinelm |
설명 | A standalone Markdown editor |
파일 크기 | 363 KB |
설치 횟수 | 537 |
현재 버전 | 1.0 |
최근 업데이트 | 2014-01-31 |
출시 날짜 | 2014-01-31 |
평점 | 4.20/5 총 5 개의 평점 |
개발자 | Jørgen NYSTAD |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jorgenys/lightmd |
도움말 페이지 URL | https://github.com/jorgenys/lightmd/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Light Markdown Editor", "short_name": "lightmd", "version": "1.0", "author": "J\u00f8rgen NYSTAD", "description": "A standalone Markdown editor", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Launch Markdown Editor" }, "content_security_policy": "script-src 'self'; object-src 'self'" } |