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」です。
拡張機能のスクリーンショット
Markdown Preview Plus拡張機能のCRXファイルをダウンロード
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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": [
" | |