Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Monaco Markdown Editor For GitHub क्या है?
Monaco Markdown Editor For GitHub Henning Dieterichs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension brings the famous Monaco editor to GitHub!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Monaco Markdown Editor For GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This open source extension replaces all github text areas for authoring markdown with a monaco editor. Monaco features * Syntax Highlighting of Markdown and Code Snippets * Tab to indent and Shift+Tab to outdent entire selections * Multi-Cursor Editing * and much more Please use GitHub to report bugs or feature requests! You can press F11 inside the monaco editor to open a full screen view.
एक्सटेंशन की मूल जानकारी
नाम | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
आधिकारिक URL | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
विवरण | This extension brings the famous Monaco editor to GitHub! |
फ़ाइल का आकार | 1.13 MB |
स्थापना संख्या | 1,744 |
वर्तमान संस्करण | 0.5.2 |
अंतिम अपडेट | 2022-11-09 |
प्रकाशन तिथि | 2020-09-18 |
रेटिंग | 5.00/5 कुल 4 रेटिंग्स |
डेवलपर | Henning Dieterichs |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/hediet/chrome-ext-github-monaco |
सहायता पृष्ठ URL | https://github.com/hediet/chrome-ext-github-monaco/issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Monaco Markdown Editor For GitHub", "version": "0.5.2", "description": "This extension brings the famous Monaco editor to GitHub!", "icons": { "128": "logo.drawio.png" }, "options_ui": { "page": ".\/dist\/options.html", "open_in_tab": true, "chrome_style": true, "browser_style": true }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "\/dist\/content-script.js" ], "run_at": "document_end" } ], "permissions": [ "storage", "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "web_accessible_resources": [ "dist\/*" ] } |