Markdown Preview Plus

Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload

Что такое Markdown Preview Plus?

Markdown Preview Plus - это расширение Chrome, разработанное https://www.ooso.net, и его основная функция - "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload".

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

screenshot

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

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

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

                        Automatically parses markdown files (.md) into HTML with live reload

Usage:

1. Install extension from webstore (creates no new UI)
2. Check "Allow access to file URLs" in chrome://extensions listing: 
3. Open local or remote .md file in Chrome.
4. See nicely formatted HTML!

Note: The auto reload feature is disabled default.

## Features

* Support auto reload.
* Support external css file.
* Customize theme for every md file.
* Support github flavored markdown.
* Export nicely formatted HTML.
* Support render Katex, Mermaid.

The extension is open source. https://github.com/volca/markdown-preview

## Release Notes

### 0.8.5 ###

* Fixes the TOC feature
* Upgrade the mermaid lib to v10.8.0

### 0.8.4 ###

* Add more description for options
* Update library mermaid, marked to latest

### 0.8.3 ###

Fixes a bug for highlight code

### 0.8.2 ###

Restore plantuml rendering capability

### 0.8.1 ###

* Update mermaid to v10.2.0
* Update katex to latest version
* Update marked to v5.0.2
* Remove supports for sequence, puml and flow. Use mermaid instead                    

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

Название Markdown Preview Plus Markdown Preview Plus
ID febilkbfcbhebfnokafefeacimjdckgl
Официальный URL https://chromewebstore.google.com/detail/markdown-preview-plus/febilkbfcbhebfnokafefeacimjdckgl
Описание Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload
Размер файла 2.57 MB
Количество установок 104,180
Текущая Версия 0.8.5
Последнее Обновление 2024-03-04
Дата публикации 2020-05-18
Рейтинг 4.10/5 Всего 228 оценок
Разработчик https://www.ooso.net
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/volca/markdown-preview
URL страницы помощи https://github.com/volca/markdown-preview/issues
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Markdown Preview Plus",
    "version": "0.8.5",
    "manifest_version": 3,
    "description": "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload",
    "icons": {
        "128": "images\/icon.png",
        "48": "images\/icon.png",
        "16": "images\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "file:\/\/*\/*.*md*",
                "file:\/\/*\/*.*MD*",
                "file:\/\/*\/*.text",
                "file:\/\/*\/*.markdown*",
                "file:\/\/*\/*.mdown*",
                "file:\/\/*\/*.txt*",
                "file:\/\/*\/*.mkd*",
                "file:\/\/*\/*.rst*",
                "*:\/\/*\/*.*md*",
                "*:\/\/*\/*.*MD*",
                "*:\/\/*\/*.text",
                "*:\/\/*\/*.markdown*",
                "*:\/\/*\/*.mdown*",
                "*:\/\/*\/*.txt*",
                "*:\/\/*\/*.mkd*",
                "*:\/\/*\/*.rst*"
            ],
            "css": [
                "css\/MarkdownTOC.css",
                "css\/highlight.css"
            ],
            "js": [
                "js\/katex.min.js",
                "js\/config.js",
                "js\/jquery.js",
                "js\/marked.min.js",
                "js\/marked-highlight\/index.cjs",
                "js\/purify.js",
                "js\/highlight.min.js",
                "js\/markdownify.js",
                "js\/underscore-min.js",
                "js\/diagramflowseq.js",
                "js\/mermaid.min.js",
                "js\/platumlencode.js",
                "js\/rawdeflate.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        "file:\/\/\/*"
    ],
    "optional_host_permissions": [
        "*:\/\/*\/"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "bootstrap.css",
                "theme\/*.css",
                "css\/*.css",
                "css\/fonts\/*",
                "theme\/i\/*.png"
            ]
        }
    ],
    "action": {
        "default_icon": "images\/icon.png",
        "default_title": "Markdown Preview Plus",
        "default_popup": "popup.html"
    },
    "options_page": "options.html"
}