Markdown Formatter
Formats Markdown files as HTML.
Markdown Formatter क्या है?
Markdown Formatter Peter Eisentraut द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Formats Markdown files as HTML."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Markdown Formatter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This is an extension that formats Markdown text as HTML. Click on the Markdown icon in the address bar or press Ctrl+M to toggle between raw and HTML view. It works for the following file extensions: - .md - .markdown - .text - .txt Some URLs to try: - https://raw.githubusercontent.com/petere/markdown-formatter-for-chrome/master/README.md - https://raw.githubusercontent.com/jgm/CommonMark/master/README.md - http://daringfireball.net/projects/markdown/syntax.text - http://fletcherpenney.net/multimarkdown/index.txt
एक्सटेंशन की मूल जानकारी
नाम | Markdown Formatter |
ID | koaflnhbkgmemhdekjhffbhldgjpiolm |
आधिकारिक URL | https://chromewebstore.google.com/detail/markdown-formatter/koaflnhbkgmemhdekjhffbhldgjpiolm |
विवरण | Formats Markdown files as HTML. |
फ़ाइल का आकार | 43.14 KB |
स्थापना संख्या | 145 |
वर्तमान संस्करण | 1.2014.12.20 |
अंतिम अपडेट | 2014-12-21 |
प्रकाशन तिथि | 2014-12-21 |
रेटिंग | 4.00/5 कुल 1 रेटिंग्स |
डेवलपर | Peter Eisentraut |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/petere/markdown-formatter-for-chrome |
सहायता पृष्ठ URL | https://github.com/petere/markdown-formatter-for-chrome/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Markdown Formatter", "version": "1.2014.12.20", "description": "Formats Markdown files as HTML.", "homepage_url": "https:\/\/github.com\/petere\/markdown-formatter-for-chrome", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "background": { "scripts": [ "background.js" ] }, "commands": { "toggle-markdown": { "suggested_key": { "default": "Ctrl+M", "mac": "MacCtrl+M" }, "description": "Toggle between Markdown and HTML" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*.md", "*:\/\/*\/*.markdown", "*:\/\/*\/*.text", "*:\/\/*\/*.txt", "file:\/\/*.md", "file:\/\/*.markdown", "file:\/\/*.text", "file:\/\/*.txt" ], "js": [ "commonmark.js", "content.js" ], "all_frames": true, "run_at": "document_start" } ], "page_action": { "default_icon": { "19": "icon-19.png", "38": "icon-38.png" }, "default_title": "Markdown" } } |