Markdown Editor

A lite, free & flexible Markdown editor app for your browser.

什麼是Markdown Editor?

Markdown Editor是由Keller開發的Chrome擴展程式,該擴展的主要功能是“A lite, free & flexible Markdown editor app for your browser.”。

擴展截圖

screenshot
screenshot
screenshot

下載Markdown Editor擴展crx文件

下載Markdown Editor擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Markdown Editor, is an editor for markdown language (a lite markup language with plain text formatting syntax).

With this app, you can open any ".md" file and edit the code via the built-in markdown editor. Moreover, you can compile the code and see the rendered document within the app (side or bottom sections depending on the window size). Once a markdown code is compiled you can click on the print button to print the document to .pdf format (via the print UI). Please note that this app uses CodeMirror (codemirror.net) and markdown-it (github.com/markdown-it/markdown-it) open-source JavaScript libraries.

There are few settings to adjust for this app, simply open any markdown document, edit the code on the left side editor, then adjust desired options on the top toolbar, and then click on the compile button. Please note that the add-on also compiles the code on-the-fly as you type in the editor. Once you are done, you can download the final markdown code or get the PDF for the final result.

If you have a feature in mind or found a bug to report, please fill the bug report form on the add-on's homepage (https://mybrowseraddon.com/markdown-editor.html).                    

擴展基本資訊

名稱 Markdown Editor Markdown Editor
ID kllaieliiilnenaeedlaffipnnijkefd
官方網址 https://chromewebstore.google.com/detail/markdown-editor/kllaieliiilnenaeedlaffipnnijkefd
簡介 A lite, free & flexible Markdown editor app for your browser.
檔案大小 318 KB
安裝次數 224
目前版本 0.1.3
更新時間 2022-03-10
上架時間 2019-12-22
評分 2.00/5 共 2 次評分
開發者 Keller
電子郵箱 [email protected]
付費類型 free
擴展官網 https://mybrowseraddon.com/markdown-editor.html
說明頁面URL https://mybrowseraddon.com/markdown-editor.html
隱私政策頁面URL https://mybrowseraddon.com/privacy-policy/keller.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.3",
    "manifest_version": 3,
    "offline_enabled": true,
    "name": "Markdown Editor",
    "short_name": "markdown-editor",
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/markdown-editor.html",
    "description": "A lite, free & flexible Markdown editor app for your browser.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Markdown Editor",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}