Markdown Editor

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

Markdown Editor क्या है?

Markdown Editor Keller द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A lite, free & flexible Markdown editor app for your browser."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Markdown Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    }
}