Light Markdown Editor
A standalone Markdown editor
Τι είναι το Light Markdown Editor;
Το Light Markdown Editor είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jørgen NYSTAD, και η κύρια λειτουργία του είναι "A standalone Markdown editor".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Light Markdown Editor
Λήψη αρχείων επέκτασης Light Markdown Editor σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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'" } |