Light Markdown Editor

A standalone Markdown editor

Что такое Light Markdown Editor?

Light Markdown Editor - это расширение Chrome, разработанное Jørgen NYSTAD, и его основная функция - "A standalone Markdown editor".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Light Markdown Editor

Скачайте файлы расширений Light Markdown Editor в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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 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'"
}