Markdown Preview

Preview markdown text.

Что такое Markdown Preview?

Markdown Preview - это расширение Chrome, разработанное Unknown, и его основная функция - "Preview markdown text.".

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

screenshot
screenshot

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

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

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

                        Several websites now allow you to enter text that support markdown (e.g. StackOverflow, GitHub), but not all sites will let you preview what the output will look like before posting. This extension will give you the ability to preview before posting markdown text.

Github also supports markdown README files in your repositories, which makes reading README files easier. If you write your README files in a text editor (e.g. Vim, Notepad++, etc) there is no preview, thus the reason for this extension.                    

Основная информация о расширении

Название Markdown Preview Markdown Preview
ID hpdcheheebhjfkbdbialimlbhoopehil
Официальный URL https://chromewebstore.google.com/detail/markdown-preview/hpdcheheebhjfkbdbialimlbhoopehil
Описание Preview markdown text.
Размер файла 31.09 KB
Количество установок 1,678
Текущая Версия 1.2
Последнее Обновление 2013-08-24
Дата публикации 2013-08-24
Рейтинг 3.85/5 Всего 13 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/erichschroeter/markdown-chrome-extension
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Markdown Preview",
    "version": "1.2",
    "description": "Preview markdown text.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Open Markdown Preview Tab"
    }
}