Light Markdown Editor
A standalone Markdown editor
Light Markdown Editor क्या है?
Light Markdown Editor Jørgen NYSTAD द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A standalone Markdown editor"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Light Markdown Editor एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Light Markdown Editor is a live editor for typing Markdown with a live preview in Google Chrome. lightmd does not rely on a backend. It does not send the content to any external server. lightmd is designed to be lightweight, not feature rich, while still providing some flexibility as a scratchpad. Preview supports three styles, None (browser default rendering), Github (inspired), and a custom lightmd style (seen in screenshot). lightmd allows for export to .md, HTML, and printing directly from the preview frame (must hit the Print button, not Ctrl+P). The extension stores your content while you type in the browsers local storage. It has 4 "slots" which can be swapped between as you wish. NB! Wiping browser local storage will wipe the contents stored in these editors! lightmd uses a JavaScript library for converting Markdown to HTML (markdown-js), which has some limitations. It only supports basic Markdown and does not support inline HTML. lightmd is open source and available on GitHub: https://github.com/jorgenys/lightmd
एक्सटेंशन की मूल जानकारी
नाम | Light Markdown Editor |
ID | efjgdajhhphockmgbagbfoaidoeinelm |
आधिकारिक URL | https://chromewebstore.google.com/detail/light-markdown-editor/efjgdajhhphockmgbagbfoaidoeinelm |
विवरण | A standalone Markdown editor |
फ़ाइल का आकार | 363 KB |
स्थापना संख्या | 537 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2014-01-31 |
प्रकाशन तिथि | 2014-01-31 |
रेटिंग | 4.20/5 कुल 5 रेटिंग्स |
डेवलपर | Jørgen NYSTAD |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jorgenys/lightmd |
सहायता पृष्ठ URL | https://github.com/jorgenys/lightmd/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Light Markdown Editor", "short_name": "lightmd", "version": "1.0", "author": "J\u00f8rgen NYSTAD", "description": "A standalone Markdown editor", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "unlimitedStorage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "19": "icon19.png", "38": "icon38.png" }, "default_title": "Launch Markdown Editor" }, "content_security_policy": "script-src 'self'; object-src 'self'" } |