Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
What is Monaco Markdown Editor For GitHub?
Monaco Markdown Editor For GitHub is a Chrome extension developed by Henning Dieterichs, and its main feature is "This extension brings the famous Monaco editor to GitHub!".
Extension Screenshots
Download Monaco Markdown Editor For GitHub Extension CRX File
Download Monaco Markdown Editor For GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Official URL | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Description | This extension brings the famous Monaco editor to GitHub! |
File Size | 1.13 MB |
Installation Count | 1,744 |
Current Version | 0.5.2 |
Last Updated | 2022-11-09 |
Publish Date | 2020-09-18 |
Rating | 5.00/5 Total 4 Ratings |
Developer | Henning Dieterichs |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/hediet/chrome-ext-github-monaco |
Help Page URL | https://github.com/hediet/chrome-ext-github-monaco/issues |
Supported Languages | 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\/*" ] } |