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은(는) https://www.ooso.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Converts and previews markdown files (.md, .markdown) to HTML(include TOC) right inside Chrome and support live reload"입니다.

확장 프로그램 스크린샷

screenshot

Markdown Preview Plus 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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