Monaco Markdown Editor For GitHub
This extension brings the famous Monaco editor to GitHub!
Apa itu Monaco Markdown Editor For GitHub?
Monaco Markdown Editor For GitHub adalah ekstensi Chrome yang dikembangkan oleh Henning Dieterichs, dan fitur utamanya adalah "This extension brings the famous Monaco editor to GitHub!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Monaco Markdown Editor For GitHub
Unduh file ekstensi Monaco Markdown Editor For GitHub dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Monaco Markdown Editor For GitHub |
ID | mmpbdjdnmhgkpligeniippcgfmkgkpnf |
URL Resmi | https://chromewebstore.google.com/detail/monaco-markdown-editor-fo/mmpbdjdnmhgkpligeniippcgfmkgkpnf |
Deskripsi | This extension brings the famous Monaco editor to GitHub! |
Ukuran File | 1.13 MB |
Jumlah Instalasi | 1,744 |
Versi Saat Ini | 0.5.2 |
Terakhir Diperbarui | 2022-11-09 |
Tanggal Publikasi | 2020-09-18 |
Penilaian | 5.00/5 Total 4 Penilaian |
Pengembang | Henning Dieterichs |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/hediet/chrome-ext-github-monaco |
URL Halaman Bantuan | https://github.com/hediet/chrome-ext-github-monaco/issues |
Bahasa yang Didukung | 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\/*" ] } |